Pixels

Notes
Expert level
The API key should be sent as a Bearer token in the Authorization header of the request. Erhalten Sie Ihren API-Schlüssel.
Liste

API endpoint:

GET
https://4or.de/api/v1/pixels

Beispiel anfordern:

curl --location --request GET 'https://4or.de/api/v1/pixels' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Beschreibung
search
optional string
Die Suchanfrage.
search_by
optional string
Suche nach. Mögliche Werte sind: name for Name. Standardwert: name
type
optional string
Der Pixel-Typ. Mögliche Werte sind: adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, x.
sort_by
optional string
Sortieren nach. Mögliche Werte sind: id for Erstellungsdatum, name for Name. Standardwert: id
sort
optional string
Sortieren. Mögliche Werte sind: desc for Absteigend, asc for Aufsteigend. Standardwert: desc
per_page
optional integer
Ergebnisse pro Seite. Mögliche Werte sind: 10, 25, 50, 100. Standardwert: 100
anzeigen

API endpoint:

GET
https://4or.de/api/v1/pixels/{id}

Beispiel anfordern:

curl --location --request GET 'https://4or.de/api/v1/pixels/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Speichern

API endpoint:

POST
https://4or.de/api/v1/pixels

Beispiel anfordern:

curl --location --request POST 'https://4or.de/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
Type
Beschreibung
name
erforderlich string
Der Pixel-Name.
type
erforderlich string
Der Pixel-Typ. Mögliche Werte sind: adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, x.
value
erforderlich string
Die Pixel ID
Aktualisieren

API endpoint:

PUT PATCH
https://4or.de/api/v1/pixels/{id}

Beispiel anfordern:

curl --location --request PUT 'https://4or.de/api/v1/pixels/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Beschreibung
name
optional string
Der Pixel-Name.
type
optional string
Der Pixel-Typ. Mögliche Werte sind: adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, x.
value
optional string
Die Pixel ID
Löschen

API endpoint:

DELETE
https://4or.de/api/v1/pixels/{id}

Beispiel anfordern:

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