Chats

Anmerkungen
Expertenniveau
Der API-Key sollte als Bearer-Token im Authorization-Header der Anfrage gesendet werden. Erhalten Sie Ihren API-Key.
Liste

API Endpunkt:

GET
https://dlx-content.com/api/v1/chats

Beispiel anfordern:

curl --location --request GET 'https://dlx-content.com/api/v1/chats' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Art
Beschreibung
search
optional string
Die Suchanfrage.
search_by
optional string
Suche nach. Mögliche Werte sind: name für Name. Standardwert: name.
favorite
optional boolean
Nach Favoriten filtern.
sort_by
optional string
Sortieren nach. Mögliche Werte sind: id für Erstellungsdatum, name für Name. Standardwert: id.
sort
optional string
Sortieren. Mögliche Werte sind: desc für Absteigend, asc für Aufsteigend. Standardwert: desc.
per_page
optional integer
Ergebnisse pro Seite. Mögliche Werte sind: 10, 25, 50, 100. Standardwert: 100.
anzeigen

API Endpunkt:

GET
https://dlx-content.com/api/v1/chats/{id}

Beispiel anfordern:

curl --location --request GET 'https://dlx-content.com/api/v1/chats/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Speichern

API Endpunkt:

POST
https://dlx-content.com/api/v1/chats

Beispiel anfordern:

curl --location --request POST 'https://dlx-content.com/api/v1/chats' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}' \
--data-urlencode 'description={description}'
Parameter
Art
Beschreibung
name
erforderlich string
Der Name des Chats.
behavior
optional string
Das Verhalten des Assistenten.
Aktualisieren

API Endpunkt:

PUT PATCH
https://dlx-content.com/api/v1/chats/{id}

Beispiel anfordern:

curl --location --request PUT 'https://dlx-content.com/api/v1/chats/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Art
Beschreibung
name
optional string
Der Name des Chats.
behavior
optional string
Das Verhalten des Assistenten.
favorite
optional boolean
Ob der Chat ein Favorit ist oder nicht.
Löschen

API Endpunkt:

DELETE
https://dlx-content.com/api/v1/chats/{id}

Beispiel anfordern:

curl --location --request DELETE 'https://dlx-content.com/api/v1/chats/{id}' \
--header 'Authorization: Bearer {api_key}'