Resume workflow

This endpoint allows you to programmatically resume a workflow paused at the custom integration step.

Prerequisites

  • In order to call any Productiv API, you will need to send an access_token as part of the Authorization header. To see the steps for generating an access token check out Authorization.

  • In order to call this API, you will need a callback_token provided in the body of request made to your endpoint in a workflow run as part of a custom integration step. Check Custom Integration for more details.

Endpoint

POST https://public-api.productiv.com/workflows/resume
Required Scope https://api.productiv.com/aph.workflow.write

Request headers

Parameter Value
content-type application/json
Authorization Bearer access_token

Request body

Parameter Description Optional
CallbackToken callback_token No

Example request body

{
  "CallbackToken": "callback_token"
}

Response

If the request is successful, a JSON response will be returned. This JSON object will contain the following parameters:

Parameter Description Optional
result Can be one of ["success", "duplicate"] No

Example response

{
  "result": "success"
}