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

The Resume Integration endpoint allows you to restart a previously stopped integration flow. This endpoint is used to continue processing after a temporary pause or maintenance period.

Effects

  • The integration flow’s status will be updated to RUNNING
  • New executions will be scheduled according to the flow’s configuration
  • Any pending steps or executions will be processed

Common Use Cases

  • Restart after maintenance
  • Continue processing after configuration updates
  • Resume normal operations after troubleshooting
  • Resource reallocation

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 resume

Response

200
application/json

Integration flow resumed successfully.

The response is of type object.