Pixels

Pixels de suivi pour liens courts.

GET/api/v1/pixels
Lister pixel
NomTypeRequisDescription
pageintegerNonPage number (default 1)
results_per_pageintegerNonItems per page (default 25, max 100)
searchstringNonSearch term
search_bystringNonColumn to search
order_bystringNonSort column
order_typestringNonasc or desc
datetime_startstringNonISO datetime filter start
datetime_endstringNonISO datetime filter end
curl -X GET 'https://forqrcode.com/api/v1/pixels' \
  -H 'Authorization: Bearer YOUR_API_KEY'
GET/api/v1/pixels/{id}
Lire un pixel
NomTypeRequisDescription
idintegerOui
curl -X GET 'https://forqrcode.com/api/v1/pixels/{id}' \
  -H 'Authorization: Bearer YOUR_API_KEY'
POST/api/v1/pixels
Créer pixel
curl -X POST 'https://forqrcode.com/api/v1/pixels' \
  -H 'Authorization: Bearer YOUR_API_KEY'
PATCH/api/v1/pixels/{id}
Mettre à jour pixel
NomTypeRequisDescription
idintegerOui
curl -X PATCH 'https://forqrcode.com/api/v1/pixels/{id}' \
  -H 'Authorization: Bearer YOUR_API_KEY'
DELETE/api/v1/pixels/{id}
Supprimer pixel
NomTypeRequisDescription
idintegerOui
curl -X DELETE 'https://forqrcode.com/api/v1/pixels/{id}' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Noms de paramètres et exemples JSON en anglais. Remplacez YOUR_API_KEY par votre clé.