KiteFlow | BETA
This is a detailed document. KiteFlow is designed to be simply understandable
but there are some complex aspects, which this documentation covers as simple as possible
If there are any further questions, feel free to contact us.
API Keys cannot be created via our API. They need to be created
within the dashboard. The API keys are used to interact with the
API itself.
HEADER REQUIRED:
Authorization: Bearer -PRIVATE-API-KEY-
You can create contacts directly via our API.
GET | https://kiteflow.dev/api/v1/profile?id=(profile_id)&projectId=(project_id)
GET | https://kiteflow.dev/api/v1/profiles?projectId=(project_id)
PATCH | https://kiteflow.dev/api/v1/profile
BODY:
id*
name*
DELETE | https://kiteflow.dev/api/v1/profile
BODY:
id*
Lists can be created, but deletion is not recommended!
GET | https://kiteflow.dev/api/v1/project?id=(project_id)
GET | https://kiteflow.dev/api/v1/projects
POST | https://kiteflow.dev/api/v1/project
BODY:
name*
PATCH | https://kiteflow.dev/api/v1/project
BODY:
id*
name*
DELETE | https://kiteflow.dev/api/v1/project
BODY:
id*
Fetching the activity via our API is possible, but not the recommended way.
GET | https://kiteflow.dev/api/v1/activity?skip=(skip)&take=(take)
// take [30 by default] (max. 30)
// skip [0 by default]
Error description