Skip to main content
POST
/
step
Add a new process step
curl --request POST \
  --url https://jobaffinity.fr/restapi/v1/step \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "application_id": 123,
  "process_step_id": 123
}
'
{
  "_status": "OK",
  "_actions": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication with API credentials

Body

application/json
application_id
integer
required

Identifier of the application to modify. Provided by the .id field of the application detail resource.

process_step_id
integer
required

Identifier of the target step (will become the current step of the application). Provided by the .steps.items[].id field of the process detail resource.

Response

Process step added successfully

_status
enum<string>
Available options:
OK,
INVALID
_actions
object[]