Skip to main content
POST
/
v3
/
jobs
/
{job_uid}
/
retry
Retry a Run
curl --request POST \
  --url https://api.captaindata.co/v3/jobs/{job_uid}/retry \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'x-project-id: <api-key>' \
  --data '
{
  "input_parameters": "<any>",
  "integrations": {},
  "delay": 123,
  "job_name": "<any>",
  "default_retry_behavior": "<any>",
  "default_retry_times": "<any>",
  "timeslot_start_time": "<any>",
  "timeslot_finish_time": "<any>",
  "timeslot_days": "<any>",
  "timeslot_timezone": "<any>",
  "steps_configuration": [
    {}
  ],
  "steps": [
    {}
  ]
}
'
"<any>"

Authorizations

Authorization
string
header
required

The Authorization header must include 'x-api-key' followed by your API key (e.g., 'Authorization: x-api-key YOUR_API_KEY').

x-project-id
string
header
required

Workspace UID required to identify the workspace.

Path Parameters

job_uid
string<uuid>
required

Body

application/json
input_parameters
any
integrations
object
delay
job_name
any
default_retry_behavior
any
default_retry_times
any
timeslot_start_time
any
timeslot_finish_time
any
timeslot_days
any
timeslot_timezone
any
steps_configuration
Steps Configuration · object[]
steps
Steps · object[]

Response

Successful Response

The response is of type any.