Resume job

Resumes a particular job based on the resume_token you provide. This endpoint returns HTTP status code 204, indicating successful request processing without any content included in the response. This endpoint is invoked by third-party apps when using SDK Wait for resume actions.

Headers

AuthorizationstringRequired

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

Request

This endpoint expects an object.
tokenstringRequired

The resume_token that matches the particular job you plan to resume.

datastringOptional

Any contextual data you plan to pass back to the job. This data is accessible by the action in the before_resume lambda. The payload’s limit is 50MB. For payloads larger than the limit, you can send a reference and allow the action’s execute lambda to make a secondary request to retrieve the data.

Response

The job has been successfully resumed. No content is included in the response.

Errors