curl --request POST \
--url https://api.getcargo.io/v1/connection/customIntegrations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"baseUrl": "<string>"
}
'{
"customIntegration": {
"uuid": "<string>",
"workspaceUuid": "<string>",
"slug": "<string>",
"baseUrl": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
}Create a new custom integration
curl --request POST \
--url https://api.getcargo.io/v1/connection/customIntegrations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"baseUrl": "<string>"
}
'{
"customIntegration": {
"uuid": "<string>",
"workspaceUuid": "<string>",
"slug": "<string>",
"baseUrl": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request body schema.
Base URL for the custom integration.
Successful response
Custom integration details.
Show child attributes
Was this page helpful?