Kombo Connect
Activate integration
Activate an integration that was just created via Kombo Connect.
POST
/
connect
/
activate-integration
Authorization
Body
curl --request POST \
--url https://api.kombo.dev/v1/connect/activate-integration \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"token": "<string>"
}'
{
"status": "success",
"data": {
"tool": "personio",
"id": "personio:CBNMt7dSNCzBdnRTx87dev4E",
"end_user_origin_id": "36123",
"end_user_organization_name": "Acme, Inc.",
"end_user_email": "user@example.com"
}
}
Check out our full guide for more details about implementing the connection flow into your app.
Example Request Body
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJtZXNzYWdlIjoiVGhpcyBpcyBub3QgYW4gYWN0dWFsIHRva2VuLiJ9.JulqgOZBMKceI8vh9YLpVX51efND0ZyfUNHDXLrPz_4"
}
Authorizations
Authorization
string
headerrequiredCreate an API key on the Secrets page in the Kombo dashboard.
Body
application/json
token
string
requiredResponse
200 - application/json
status
enum<string>
requiredAvailable options:
success
data
object
requiredcurl --request POST \
--url https://api.kombo.dev/v1/connect/activate-integration \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"token": "<string>"
}'
{
"status": "success",
"data": {
"tool": "personio",
"id": "personio:CBNMt7dSNCzBdnRTx87dev4E",
"end_user_origin_id": "36123",
"end_user_organization_name": "Acme, Inc.",
"end_user_email": "user@example.com"
}
}