Pixel
GET https://paths.to/api/pixels/
curl --request GET \
--url 'https://paths.to/api/pixels/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://paths.to/api/pixels/' \
--header 'Authorization: Bearer {api_key}' \
Parameter | Details | Beschreibung |
---|---|---|
page | Optional Ganzzahl | Die Seitenzahl, von der Sie Ergebnisse wünschen. Standardmäßig auf 1 gesetzt. |
results_per_page | Optional Ganzzahl | Wie viele Ergebnisse möchten Sie pro Seite? Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Standardmäßig ist es 25 . |
{ "data": [ { "id": 1, "type": "facebook", "name": "Fb Ads", "pixel": "1234567", "last_datetime": null, "datetime": "2025-04-04 15:52:01" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://paths.to/api/pixels?&page=1", "last": "https://paths.to/api/pixels?&page=1", "next": null, "prev": null, "self": "https://paths.to/api/pixels?&page=1" } }
GET https://paths.to/api/pixels/{pixel_id}
curl --request GET \
--url 'https://paths.to/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://paths.to/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "type": "facebook", "name": "Fb Ads", "pixel": "1234567", "last_datetime": null, "datetime": "2025-04-04 15:52:01" } }
POST https://paths.to/api/pixels
Parameter | Details | Beschreibung |
---|---|---|
type | Erforderlich Zeichenfolge | Erlaubte Werte: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat |
name | Erforderlich Zeichenfolge | - |
pixel | Erforderlich Zeichenfolge | - |
curl --request POST \
--url 'https://paths.to/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678' \
--url 'https://paths.to/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678' \
{ "data": { "id": 1 } }
POST https://paths.to/api/pixels/{pixel_id}
Parameter | Details | Beschreibung |
---|---|---|
type | Optional Zeichenfolge | Erlaubte Werte: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat |
name | Optional Zeichenfolge | - |
pixel | Optional Zeichenfolge | - |
curl --request POST \
--url 'https://paths.to/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook New Name' \
--url 'https://paths.to/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook New Name' \
{ "data": { "id": 1 } }
DELETE https://paths.to/api/pixels/{pixel_id}
curl --request DELETE \
--url 'https://paths.to/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://paths.to/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \