Domains

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/domains

Beispiel anfordern:

curl --location --request GET 'https://4or.de/api/v1/domains' \
--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
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/domains/{id}

Beispiel anfordern:

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

API endpoint:

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

Beispiel anfordern:

curl --location --request POST 'https://4or.de/api/v1/domains' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}'
Parameter
Type
Beschreibung
name
erforderlich string
Der Name der Domain.
index_page
optional string
Die Indexseite, zu der umgeleitet werden soll.
not_found_page
optional string
Die 404-Seite, auf die umgeleitet werden soll.
Aktualisieren

API endpoint:

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

Beispiel anfordern:

curl --location --request PUT 'https://4or.de/api/v1/domains/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Beschreibung
index_page
optional string
Die Indexseite, zu der umgeleitet werden soll.
not_found_page
optional string
Die 404-Seite, auf die umgeleitet werden soll.
Löschen

API endpoint:

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

Beispiel anfordern:

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