Appearance
Create integration
POST
/integrations/
Create a new integration. This is the first step in the authentication process. Once an integration is created, you can create access tokens for it with specific scopes.
Request Body
application/json
JSON
{
"integration_name": "",
"parameters": {
"name": "Api docs test",
"description": "Test"
}
}
Responses
Integration created successfully
application/json
JSON
{
"integration": {
"id": "4ii6go3zs2tg",
"name": "Api docs test",
"integration_name": "",
"enabled": true,
"available_datasources": [
"string"
],
"created_at": "2026-01-09T20:26:35.062554Z",
"datasources": [
{
}
],
"datatargets": [
{
}
],
"datatarget_templates": [
{
}
],
"description": "Test",
"configuration": {
},
"parameters": {
"name": "string",
"description": "string"
}
}
}