POST
/
{workspaceId}
/
projects
/
{projectName}
/
jobs
Create Job
curl --request POST \
  --url https://app.intuned.io/api/v1/workspace/{workspaceId}/projects/{projectName}/jobs \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "id": "my-awesome-job",
  "configuration": {
    "retry": {
      "maximumAttempts": 3
    }
  },
  "payload": [
    {
      "apiName": "my-awesome-api",
      "parameters": {
        "param1": "value1",
        "param2": 42,
        "param3": true
      }
    }
  ]
}'
{
  "id": "<string>",
  "message": "created"
}

Authorizations

x-api-key
string
header
required

API Key used to authenticate your requests. How to create one.

Path Parameters

workspaceId
string<uuid>
required

Your workspace ID. How to find it?

projectName
string
required

Your project name. It is the name you provide when creating a project.

Body

application/json

Job creation input schema

The body is of type object.

Response

Job created successfully.

The response is of type object.