Pixels

Notes
Expert level
The API key should be sent as a Bearer token in the Authorization header of the request. Get your API key.
List

Endpoint da API:

GET
https://kliquem.com/api/v1/pixels

Request example:

curl --location --request GET 'https://kliquem.com/api/v1/pixels' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Tipo
Descrição
search
opcional string
The search query.
search_by
opcional string
Search by. Possible values are: name for Name. Defaults to: name.
type
opcional string
The pixel type. Possible values are: adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, x.
sort_by
opcional string
Ordernar por. Possible values are: id for Date created, name for Name. Defaults to: id.
sort
opcional string
Sort. Possible values are: desc for Descending, asc for Ascending. Defaults to: desc.
per_page
opcional integer
Resultados por página. Possible values are: 10, 25, 50, 100. Defaults to: 10.
Mostrar

Endpoint da API:

GET
https://kliquem.com/api/v1/pixels/{id}

Request example:

curl --location --request GET 'https://kliquem.com/api/v1/pixels/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Store

Endpoint da API:

POST
https://kliquem.com/api/v1/pixels

Request example:

curl --location --request POST 'https://kliquem.com/api/v1/pixels' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}' \
--data-urlencode 'type={type}' \
--data-urlencode 'value={value}'
Parameter
Tipo
Descrição
name
obrigatório string
The pixel name.
type
obrigatório string
The pixel type. Possible values are: adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, x.
value
obrigatório string
The pixel ID value.
Atualizar

Endpoint da API:

PUT PATCH
https://kliquem.com/api/v1/pixels/{id}

Request example:

curl --location --request PUT 'https://kliquem.com/api/v1/pixels/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Tipo
Descrição
name
opcional string
The pixel name.
type
opcional string
The pixel type. Possible values are: adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, x.
value
opcional string
The pixel ID value.
Deletar

Endpoint da API:

DELETE
https://kliquem.com/api/v1/pixels/{id}

Request example:

curl --location --request DELETE 'https://kliquem.com/api/v1/pixels/{id}' \
--header 'Authorization: Bearer {api_key}'