Eine umfassende REST API zur Verwaltung von Subscribern, E-Mail-Listen und Tags. Perfekt für Newsletter-Integrationen, Marketing-Automationen und Daten-Synchronisation.
https://creativeskyline.de/api/flowsend/subscribers
https://creativeskyline.de/api/flowsend/lists
https://creativeskyline.de/api/flowsend/tags
Bevor Sie die API nutzen können, benötigen Sie Ihre persönlichen Zugangsdaten: Melden Sie sich an, navigieren Sie zu Profil → API-Zugang und kopieren Sie Ihren persönlichen API-Key (pk_...).
Alle API-Anfragen benötigen diesen HTTP-Header:
Authorization: Bearer pk_dein_api_key
Accept: application/json
https://creativeskyline.de/api/flowsend/subscribers
https://creativeskyline.de/api/flowsend/lists
https://creativeskyline.de/api/flowsend/tags
/api/flowsend/subscribers
Ruft eine paginierte Liste aller Subscriber ab.
status
string
Filter: subscribed, unsubscribed, bounced, complained, pending
source
string
Filter: manual, import, api, form, crm_sync
search
string
Suchbegriff (E-Mail, Name, Telefon)
lists[]
array
Array von Listen-UUIDs
tags[]
array
Array von Tag-UUIDs
per_page
integer
Anzahl pro Seite (1-200, Standard: 50)
{"success": true, "data": {"uuid": "550e8400-...", "email": "max@example.com", "firstname": "Max", "lastname": "Mustermann", "full_name": "Max Mustermann", "status": "subscribed", "source": "api", "lists": [{"uuid": "...", "title": "Newsletter"}], "tags": [{"uuid": "...", "title": "VIP-Kunde"}], "created_at": "2024-01-15T10:30:00+00:00"}}
/api/flowsend/subscribers/{uuid}
Ruft Details eines einzelnen Subscribers ab.
/api/flowsend/subscribers
Erstellt einen neuen Subscriber.
email
string
*
E-Mail-Adresse des Subscribers
prefix
string
Anrede (z.B. Herr, Frau)
firstname
string
Vorname
lastname
string
Nachname
phone
string
Telefonnummer
status
string
Status (Standard: subscribed)
lists
array
Liste von Listen-UUIDs
tags
array
Liste von Tag-UUIDs
meta
array
Meta-Daten als Array von {key, value}-Objekten
/api/flowsend/subscribers/{uuid}
Aktualisiert einen bestehenden Subscriber.
email
string
E-Mail-Adresse
firstname
string
Vorname
lastname
string
Nachname
status
string
Status (subscribed, unsubscribed)
/api/flowsend/subscribers/{uuid}
Löscht einen Subscriber unwiderruflich.
/api/flowsend/subscribers/{uuid}/lists
Ersetzt alle Listen-Zuordnungen des Subscribers (vollständige Synchronisation).
list_uuids
array
*
Liste von Listen-UUIDs (ersetzt bestehende Zuordnungen)
/api/flowsend/subscribers/{uuid}/tags
Ersetzt alle Tag-Zuordnungen des Subscribers (vollständige Synchronisation).
tag_uuids
array
*
Liste von Tag-UUIDs (ersetzt bestehende Zuordnungen)
https://creativeskyline.de/api/flowsend/subscribers
https://creativeskyline.de/api/flowsend/lists
https://creativeskyline.de/api/flowsend/tags
/api/flowsend/subscribers/bulk/add-to-lists
Fügt mehrere Subscriber gleichzeitig zu mehreren Listen hinzu.
subscriber_uuids
array
*
UUIDs der Subscriber
list_uuids
array
*
UUIDs der Ziel-Listen
/api/flowsend/subscribers/bulk/add-tags
Weist mehreren Subscribern gleichzeitig mehrere Tags zu.
subscriber_uuids
array
*
UUIDs der Subscriber
tag_uuids
array
*
UUIDs der Ziel-Tags
/api/flowsend/subscribers/bulk/remove-from-lists
Entfernt mehrere Subscriber gleichzeitig aus mehreren Listen.
subscriber_uuids
array
*
UUIDs der Subscriber
list_uuids
array
*
UUIDs der Listen
/api/flowsend/subscribers/bulk/remove-tags
Entfernt mehrere Tags gleichzeitig von mehreren Subscribern.
subscriber_uuids
array
*
UUIDs der Subscriber
tag_uuids
array
*
UUIDs der Tags
/api/flowsend/subscribers/bulk/delete
Löscht mehrere Subscriber gleichzeitig. Diese Aktion ist unwiderruflich.
subscriber_uuids
array
*
UUIDs der zu löschenden Subscriber
https://creativeskyline.de/api/flowsend/subscribers
https://creativeskyline.de/api/flowsend/lists
https://creativeskyline.de/api/flowsend/tags
/api/flowsend/lists
Ruft alle Listen ab, inklusive Subscriber-Anzahl.
/api/flowsend/lists
Erstellt eine neue Liste.
title
string
*
Name der Liste
slug
string
URL-Slug (optional, wird automatisch generiert)
description
string
Beschreibung der Liste
/api/flowsend/lists/{uuid}
Ruft Details einer bestimmten Liste ab.
/api/flowsend/lists/{uuid}
Aktualisiert eine bestehende Liste.
title
string
Name der Liste
description
string
Beschreibung
/api/flowsend/lists/{uuid}
Löscht eine Liste. Subscriber in dieser Liste werden nicht gelöscht.
/api/flowsend/subscribers
curl -X GET "https://creativeskyline.de/api/flowsend/subscribers" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/subscribers');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/subscribers',
headers=headers,
)
data = response.json()
/api/flowsend/subscribers/{uuid}
curl -X GET "https://creativeskyline.de/api/flowsend/subscribers/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/subscribers/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}',
headers=headers,
)
data = response.json()
/api/flowsend/subscribers
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "prefix": "value", "firstname": "value", "lastname": "value", "phone": "value", "status": "value", "lists": [], "tags": [], "meta": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers', [
'email' => 'value',
'prefix' => 'value',
'firstname' => 'value',
'lastname' => 'value',
'phone' => 'value',
'status' => 'value',
'lists' => [],
'tags' => [],
'meta' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
prefix: 'value',
firstname: 'value',
lastname: 'value',
phone: 'value',
status: 'value',
lists: [],
tags: [],
meta: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'prefix': 'value',
'firstname': 'value',
'lastname': 'value',
'phone': 'value',
'status': 'value',
'lists': [],
'tags': [],
'meta': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/{uuid}
curl -X PUT "https://creativeskyline.de/api/flowsend/subscribers/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "firstname": "value", "lastname": "value", "status": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', [
'email' => 'value',
'firstname' => 'value',
'lastname' => 'value',
'status' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
firstname: 'value',
lastname: 'value',
status: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'firstname': 'value',
'lastname': 'value',
'status': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/{uuid}
curl -X DELETE "https://creativeskyline.de/api/flowsend/subscribers/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->delete('https://creativeskyline.de/api/flowsend/subscribers/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.delete(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}',
headers=headers,
)
data = response.json()
/api/flowsend/subscribers/{uuid}/lists
curl -X PUT "https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"list_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists', [
'list_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
list_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'list_uuids': [],
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/{uuid}/tags
curl -X PUT "https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"tag_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags', [
'tag_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
tag_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'tag_uuids': [],
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/bulk/add-to-lists
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "list_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists', [
'subscriber_uuids' => [],
'list_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
list_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'list_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/bulk/add-tags
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "tag_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags', [
'subscriber_uuids' => [],
'tag_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
tag_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'tag_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/bulk/remove-from-lists
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "list_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists', [
'subscriber_uuids' => [],
'list_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
list_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'list_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/bulk/remove-tags
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "tag_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags', [
'subscriber_uuids' => [],
'tag_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
tag_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'tag_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/subscribers/bulk/delete
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/delete" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/delete', [
'subscriber_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/delete', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/delete',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/lists
curl -X GET "https://creativeskyline.de/api/flowsend/lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/lists');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/lists',
headers=headers,
)
data = response.json()
/api/flowsend/lists
curl -X POST "https://creativeskyline.de/api/flowsend/lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "slug": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/lists', [
'title' => 'value',
'slug' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
slug: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'slug': 'value',
'description': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/lists',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/lists/{uuid}
curl -X GET "https://creativeskyline.de/api/flowsend/lists/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/lists/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists/{uuid}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/lists/{uuid}',
headers=headers,
)
data = response.json()
/api/flowsend/lists/{uuid}
curl -X PUT "https://creativeskyline.de/api/flowsend/lists/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/lists/{uuid}', [
'title' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists/{uuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'description': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/lists/{uuid}',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/lists/{uuid}
curl -X DELETE "https://creativeskyline.de/api/flowsend/lists/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->delete('https://creativeskyline.de/api/flowsend/lists/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists/{uuid}', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.delete(
'https://creativeskyline.de/api/flowsend/lists/{uuid}',
headers=headers,
)
data = response.json()
/api/flowsend/tags
curl -X GET "https://creativeskyline.de/api/flowsend/tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/tags');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/tags',
headers=headers,
)
data = response.json()
/api/flowsend/tags
curl -X POST "https://creativeskyline.de/api/flowsend/tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "slug": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/tags', [
'title' => 'value',
'slug' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
slug: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'slug': 'value',
'description': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/tags',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/tags/{uuid}
curl -X GET "https://creativeskyline.de/api/flowsend/tags/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/tags/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags/{uuid}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/tags/{uuid}',
headers=headers,
)
data = response.json()
/api/flowsend/tags/{uuid}
curl -X PUT "https://creativeskyline.de/api/flowsend/tags/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/tags/{uuid}', [
'title' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags/{uuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'description': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/tags/{uuid}',
headers=headers,
json=payload,
)
data = response.json()
/api/flowsend/tags/{uuid}
curl -X DELETE "https://creativeskyline.de/api/flowsend/tags/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->delete('https://creativeskyline.de/api/flowsend/tags/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags/{uuid}', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.delete(
'https://creativeskyline.de/api/flowsend/tags/{uuid}',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/flowsend/subscribers" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/subscribers');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/subscribers',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/flowsend/subscribers/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/subscribers/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}',
headers=headers,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "prefix": "value", "firstname": "value", "lastname": "value", "phone": "value", "status": "value", "lists": [], "tags": [], "meta": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers', [
'email' => 'value',
'prefix' => 'value',
'firstname' => 'value',
'lastname' => 'value',
'phone' => 'value',
'status' => 'value',
'lists' => [],
'tags' => [],
'meta' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
prefix: 'value',
firstname: 'value',
lastname: 'value',
phone: 'value',
status: 'value',
lists: [],
tags: [],
meta: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'prefix': 'value',
'firstname': 'value',
'lastname': 'value',
'phone': 'value',
'status': 'value',
'lists': [],
'tags': [],
'meta': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers',
headers=headers,
json=payload,
)
data = response.json()
curl -X PUT "https://creativeskyline.de/api/flowsend/subscribers/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "firstname": "value", "lastname": "value", "status": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', [
'email' => 'value',
'firstname' => 'value',
'lastname' => 'value',
'status' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
firstname: 'value',
lastname: 'value',
status: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'firstname': 'value',
'lastname': 'value',
'status': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}',
headers=headers,
json=payload,
)
data = response.json()
curl -X DELETE "https://creativeskyline.de/api/flowsend/subscribers/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->delete('https://creativeskyline.de/api/flowsend/subscribers/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.delete(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}',
headers=headers,
)
data = response.json()
curl -X PUT "https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"list_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists', [
'list_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
list_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'list_uuids': [],
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}/lists',
headers=headers,
json=payload,
)
data = response.json()
curl -X PUT "https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"tag_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags', [
'tag_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
tag_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'tag_uuids': [],
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/subscribers/{uuid}/tags',
headers=headers,
json=payload,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "list_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists', [
'subscriber_uuids' => [],
'list_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
list_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'list_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/add-to-lists',
headers=headers,
json=payload,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "tag_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags', [
'subscriber_uuids' => [],
'tag_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
tag_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'tag_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/add-tags',
headers=headers,
json=payload,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "list_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists', [
'subscriber_uuids' => [],
'list_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
list_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'list_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-from-lists',
headers=headers,
json=payload,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": [], "tag_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags', [
'subscriber_uuids' => [],
'tag_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
tag_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
'tag_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/remove-tags',
headers=headers,
json=payload,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/subscribers/bulk/delete" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subscriber_uuids": []}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/subscribers/bulk/delete', [
'subscriber_uuids' => [],
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/subscribers/bulk/delete', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
subscriber_uuids: [],
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'subscriber_uuids': [],
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/subscribers/bulk/delete',
headers=headers,
json=payload,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/flowsend/lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/lists');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/lists',
headers=headers,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/lists" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "slug": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/lists', [
'title' => 'value',
'slug' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
slug: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'slug': 'value',
'description': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/lists',
headers=headers,
json=payload,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/flowsend/lists/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/lists/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists/{uuid}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/lists/{uuid}',
headers=headers,
)
data = response.json()
curl -X PUT "https://creativeskyline.de/api/flowsend/lists/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/lists/{uuid}', [
'title' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists/{uuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'description': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/lists/{uuid}',
headers=headers,
json=payload,
)
data = response.json()
curl -X DELETE "https://creativeskyline.de/api/flowsend/lists/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->delete('https://creativeskyline.de/api/flowsend/lists/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/lists/{uuid}', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.delete(
'https://creativeskyline.de/api/flowsend/lists/{uuid}',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/flowsend/tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/tags');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/tags',
headers=headers,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/flowsend/tags" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "slug": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/flowsend/tags', [
'title' => 'value',
'slug' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
slug: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'slug': 'value',
'description': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/flowsend/tags',
headers=headers,
json=payload,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/flowsend/tags/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->get('https://creativeskyline.de/api/flowsend/tags/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags/{uuid}', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.get(
'https://creativeskyline.de/api/flowsend/tags/{uuid}',
headers=headers,
)
data = response.json()
curl -X PUT "https://creativeskyline.de/api/flowsend/tags/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "value", "description": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/flowsend/tags/{uuid}', [
'title' => 'value',
'description' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags/{uuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'value',
description: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'title': 'value',
'description': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/flowsend/tags/{uuid}',
headers=headers,
json=payload,
)
data = response.json()
curl -X DELETE "https://creativeskyline.de/api/flowsend/tags/{uuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->delete('https://creativeskyline.de/api/flowsend/tags/{uuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/flowsend/tags/{uuid}', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
},
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
response = requests.delete(
'https://creativeskyline.de/api/flowsend/tags/{uuid}',
headers=headers,
)
data = response.json()