Eine vollständige REST API zur programmgesteuerten Verwaltung von Teammitgliedern, Einladungen, Modul-Berechtigungen und Lizenzen. Perfekt für Enterprise-Anwendungen und automatisierte Team-Workflows.
https://creativeskyline.de/api/team
https://creativeskyline.de/api/team/members
https://creativeskyline.de/api/team/invitations
https://creativeskyline.de/api/team/licenses
Bevor Sie die Team Management 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/team
https://creativeskyline.de/api/team/members
https://creativeskyline.de/api/team/invitations
https://creativeskyline.de/api/team/licenses
/api/team
Ruft allgemeine Informationen über das Team ab, inklusive Abonnement-Status, Mitgliederzahl und Lizenzübersicht.
{"success": true, "data": {"team": {"uuid": "550e8400-...", "name": "Mein Unternehmen"}, "owner": {"id": 1, "name": "Max Mustermann", "email": "max@example.com"}, "member_count": 5, "subscription": {"status": "active", "plan": "Business"}, "licenses": {"ai": {"limit": 5, "used": 3}, "tt": {"limit": 10, "used": 7}}}}
https://creativeskyline.de/api/team
https://creativeskyline.de/api/team/members
https://creativeskyline.de/api/team/invitations
https://creativeskyline.de/api/team/licenses
/api/team/members
Listet alle Teammitglieder mit ihren Modul-Berechtigungen auf.
{"success": true, "data": [{"id": 1, "user_id": 123, "name": "Max Mustermann", "email": "max@example.com", "role": "owner", "permissions": {"ai": true, "tt": true, "td": true, "cm": true, "cc": true, "fs": true, "sa": true}, "joined_at": "2024-01-15T10:00:00Z"}]}
/api/team/members/{userUuid}
Ruft Details eines einzelnen Teammitglieds ab.
/api/team/members
Fügt einen bestehenden Benutzer zum Team hinzu (nur Teaminhaber). Die Berechtigungen werden gegen die verfügbaren Lizenzen geprüft.
user_id
integer
*
ID des hinzuzufügenden Benutzers
permissions
object
*
Modul-Berechtigungen (flowai, flowtime, flowtasks, flowcrm, flowcall, flowsend, flowsaas)
/api/team/members/{userUuid}
Aktualisiert die Modul-Berechtigungen eines Teammitglieds (nur Teaminhaber).
permissions
object
*
Modul-Berechtigungen (flowai, flowtime, flowtasks, flowcrm, flowcall, flowsend, flowsaas)
/api/team/members/{userUuid}
Entfernt ein Mitglied aus dem Team (nur Teaminhaber).
https://creativeskyline.de/api/team
https://creativeskyline.de/api/team/members
https://creativeskyline.de/api/team/invitations
https://creativeskyline.de/api/team/licenses
/api/team/invitations
Listet alle ausstehenden Einladungen auf (nur Teaminhaber).
/api/team/members/invite
Sendet eine Einladung an eine E-Mail-Adresse (nur Teaminhaber). Die eingeladene Person erhält eine E-Mail mit einem Einladungslink.
email
string
*
E-Mail-Adresse des einzuladenden Mitarbeiters
permissions
object
*
Modul-Berechtigungen (flowai, flowtime, flowtasks, flowcrm, flowcall, flowsend, flowsaas)
{"success": true, "message": "Einladung erfolgreich gesendet", "data": {"uuid": "550e8400-...", "email": "neuer.mitarbeiter@example.com", "created_at": "2024-01-15T10:00:00Z"}}
/api/team/invitations/{invitationUuid}
Widerruft eine ausstehende Einladung (nur Teaminhaber).
https://creativeskyline.de/api/team
https://creativeskyline.de/api/team/members
https://creativeskyline.de/api/team/invitations
https://creativeskyline.de/api/team/licenses
/api/team/members/{userUuid}/sub-access
Ruft die Unterberechtigungen eines Mitglieds ab.
{"success": true, "data": {"berichte": true, "teamberichte": false, "projekte": true, "protokolle": true}}
/api/team/members/{userUuid}/sub-access
Aktualisiert die Unterberechtigungen eines Mitglieds (nur Teaminhaber).
berichte
boolean
Zugriff auf eigene Berichte und Statistiken
teamberichte
boolean
Zugriff auf Team-Berichte und Statistiken
projekte
boolean
Zugriff auf Projektverwaltung
protokolle
boolean
Zugriff auf Aktivitätsprotokolle
https://creativeskyline.de/api/team
https://creativeskyline.de/api/team/members
https://creativeskyline.de/api/team/invitations
https://creativeskyline.de/api/team/licenses
/api/team/licenses
Ruft detaillierte Informationen über alle Lizenzen und deren Nutzung ab (Limit, belegt, verfügbar).
{"success": true, "data": {"ai": {"module": "FlowAI", "limit": 5, "used": 3, "available": 2}, "tt": {"module": "FlowTime", "limit": 10, "used": 7, "available": 3}, "td": {"module": "FlowTasks", "limit": 10, "used": 4, "available": 6}}}
/api/team
curl -X GET "https://creativeskyline.de/api/team" \
-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/team');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team', {
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/team',
headers=headers,
)
data = response.json()
/api/team/members
curl -X GET "https://creativeskyline.de/api/team/members" \
-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/team/members');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members', {
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/team/members',
headers=headers,
)
data = response.json()
/api/team/members/{userUuid}
curl -X GET "https://creativeskyline.de/api/team/members/{userUuid}" \
-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/team/members/{userUuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}', {
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/team/members/{userUuid}',
headers=headers,
)
data = response.json()
/api/team/members
curl -X POST "https://creativeskyline.de/api/team/members" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"user_id": 0, "permissions": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/team/members', [
'user_id' => 0,
'permissions' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
user_id: 0,
permissions: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'user_id': 0,
'permissions': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/team/members',
headers=headers,
json=payload,
)
data = response.json()
/api/team/members/{userUuid}
curl -X PUT "https://creativeskyline.de/api/team/members/{userUuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"permissions": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/team/members/{userUuid}', [
'permissions' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
permissions: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'permissions': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/team/members/{userUuid}',
headers=headers,
json=payload,
)
data = response.json()
/api/team/members/{userUuid}
curl -X DELETE "https://creativeskyline.de/api/team/members/{userUuid}" \
-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/team/members/{userUuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}', {
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/team/members/{userUuid}',
headers=headers,
)
data = response.json()
/api/team/invitations
curl -X GET "https://creativeskyline.de/api/team/invitations" \
-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/team/invitations');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/invitations', {
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/team/invitations',
headers=headers,
)
data = response.json()
/api/team/members/invite
curl -X POST "https://creativeskyline.de/api/team/members/invite" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "permissions": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/team/members/invite', [
'email' => 'value',
'permissions' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/invite', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
permissions: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'permissions': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/team/members/invite',
headers=headers,
json=payload,
)
data = response.json()
/api/team/invitations/{invitationUuid}
curl -X DELETE "https://creativeskyline.de/api/team/invitations/{invitationUuid}" \
-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/team/invitations/{invitationUuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/invitations/{invitationUuid}', {
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/team/invitations/{invitationUuid}',
headers=headers,
)
data = response.json()
/api/team/members/{userUuid}/sub-access
curl -X GET "https://creativeskyline.de/api/team/members/{userUuid}/sub-access" \
-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/team/members/{userUuid}/sub-access');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}/sub-access', {
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/team/members/{userUuid}/sub-access',
headers=headers,
)
data = response.json()
/api/team/members/{userUuid}/sub-access
curl -X PUT "https://creativeskyline.de/api/team/members/{userUuid}/sub-access" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"berichte": true, "teamberichte": true, "projekte": true, "protokolle": true}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/team/members/{userUuid}/sub-access', [
'berichte' => true,
'teamberichte' => true,
'projekte' => true,
'protokolle' => true,
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}/sub-access', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
berichte: true,
teamberichte: true,
projekte: true,
protokolle: true,
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'berichte': True,
'teamberichte': True,
'projekte': True,
'protokolle': True,
}
response = requests.put(
'https://creativeskyline.de/api/team/members/{userUuid}/sub-access',
headers=headers,
json=payload,
)
data = response.json()
/api/team/licenses
curl -X GET "https://creativeskyline.de/api/team/licenses" \
-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/team/licenses');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/licenses', {
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/team/licenses',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/team" \
-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/team');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team', {
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/team',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/team/members" \
-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/team/members');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members', {
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/team/members',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/team/members/{userUuid}" \
-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/team/members/{userUuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}', {
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/team/members/{userUuid}',
headers=headers,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/team/members" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"user_id": 0, "permissions": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/team/members', [
'user_id' => 0,
'permissions' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
user_id: 0,
permissions: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'user_id': 0,
'permissions': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/team/members',
headers=headers,
json=payload,
)
data = response.json()
curl -X PUT "https://creativeskyline.de/api/team/members/{userUuid}" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"permissions": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/team/members/{userUuid}', [
'permissions' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
permissions: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'permissions': 'value',
}
response = requests.put(
'https://creativeskyline.de/api/team/members/{userUuid}',
headers=headers,
json=payload,
)
data = response.json()
curl -X DELETE "https://creativeskyline.de/api/team/members/{userUuid}" \
-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/team/members/{userUuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}', {
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/team/members/{userUuid}',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/team/invitations" \
-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/team/invitations');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/invitations', {
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/team/invitations',
headers=headers,
)
data = response.json()
curl -X POST "https://creativeskyline.de/api/team/members/invite" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email": "value", "permissions": "value"}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->post('https://creativeskyline.de/api/team/members/invite', [
'email' => 'value',
'permissions' => 'value',
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/invite', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'value',
permissions: 'value',
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'email': 'value',
'permissions': 'value',
}
response = requests.post(
'https://creativeskyline.de/api/team/members/invite',
headers=headers,
json=payload,
)
data = response.json()
curl -X DELETE "https://creativeskyline.de/api/team/invitations/{invitationUuid}" \
-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/team/invitations/{invitationUuid}');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/invitations/{invitationUuid}', {
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/team/invitations/{invitationUuid}',
headers=headers,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/team/members/{userUuid}/sub-access" \
-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/team/members/{userUuid}/sub-access');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}/sub-access', {
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/team/members/{userUuid}/sub-access',
headers=headers,
)
data = response.json()
curl -X PUT "https://creativeskyline.de/api/team/members/{userUuid}/sub-access" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"berichte": true, "teamberichte": true, "projekte": true, "protokolle": true}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken('YOUR_API_TOKEN')
->put('https://creativeskyline.de/api/team/members/{userUuid}/sub-access', [
'berichte' => true,
'teamberichte' => true,
'projekte' => true,
'protokolle' => true,
]);
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/members/{userUuid}/sub-access', {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
berichte: true,
teamberichte: true,
projekte: true,
protokolle: true,
}),
});
const data = await response.json();
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
}
payload = {
'berichte': True,
'teamberichte': True,
'projekte': True,
'protokolle': True,
}
response = requests.put(
'https://creativeskyline.de/api/team/members/{userUuid}/sub-access',
headers=headers,
json=payload,
)
data = response.json()
curl -X GET "https://creativeskyline.de/api/team/licenses" \
-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/team/licenses');
$data = $response->json();
const response = await fetch('https://creativeskyline.de/api/team/licenses', {
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/team/licenses',
headers=headers,
)
data = response.json()