Punto final de la API:
https://short.beta7.dev/api/v1/pixels
Ejemplo de solicitud:
curl --location --request GET 'https://short.beta7.dev/api/v1/pixels' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
type
sort_by
sort
per_page
Punto final de la API:
https://short.beta7.dev/api/v1/pixels/{id}
Ejemplo de solicitud:
curl --location --request GET 'https://short.beta7.dev/api/v1/pixels/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
Punto final de la API:
https://short.beta7.dev/api/v1/pixels
Ejemplo de solicitud:
curl --location --request POST 'https://short.beta7.dev/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}'
name
type
value
Punto final de la API:
https://short.beta7.dev/api/v1/pixels/{id}
Ejemplo de solicitud:
curl --location --request PUT 'https://short.beta7.dev/api/v1/pixels/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
name
type
value
Punto final de la API:
https://short.beta7.dev/api/v1/pixels/{id}
Ejemplo de solicitud:
curl --location --request DELETE 'https://short.beta7.dev/api/v1/pixels/{id}' \ --header 'Authorization: Bearer {api_key}'