POST
/
integrations
/
{integrationId}
/
stop
curl --request POST \
  --url https://api.callab.ai/v1/integrations/{integrationId}/stop \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "message": "<string>",
  "data": "<string>"
}

The Stop Integration endpoint allows you to halt the execution of a running integration flow. This is useful when you need to pause the flow temporarily or make changes to its configuration.

Effects

  • The integration flow’s status will be updated to STOPPED
  • Any ongoing executions will be completed
  • No new executions will be started until the flow is resumed

Common Use Cases

  • Maintenance windows
  • Configuration updates
  • Troubleshooting issues
  • Resource management

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

integrationId
string
required

ID of the integration to stop

Response

200
application/json

Integration flow stopped successfully.

The response is of type object.