Skip to content

Application Stages

List of valid attributes:

AttributeDescriptionSpecifics
account_idID of the account that the application stage belongs toCannot be set
discarded_atNull or timestamp of removalCannot be set
nameName of the application stageMust be set
positionPosition of the application stageMust be set, must be integer >= 0

Meta data: Permissions

GroupDescription
actionsContains permissions to edit or delete an application stage

Example request:

{
"data": {
"type": "application_stage",
"attributes": {
"name": "Application Stage"
}
}
}

Example response:

{
"data": {
"id": "459e0b1e-caa0-4960-be61-dad0dbcd969e",
"type": "application_stage",
"attributes": {
...
}
}
}

This endpoint creates an application stage.

POST /api/v1/application_stages

Example request:

{
"data": {
"type": "application_stage",
"attributes": {
"name": "Updated Application Stage"
}
}
}

Example response:

{
"data": {
"id": "459e0b1e-caa0-4960-be61-dad0dbcd969e",
"type": "application_stage",
"attributes": {
...
}
}
}

This endpoint updates an application stage.

PUT /api/v1/application_stages/:application_stage_id

ParameterDescription
application_stage_id ID of the application stage to be updated

Example response:

{
"data": {
"id": "459e0b1e-caa0-4960-be61-dad0dbcd969e",
"type": "application_stage",
"attributes": {
...
}
}
}

This endpoint returns an application stage.

GET /api/v1/application_stages/:application_stage_id

ParameterDescription
application_stage_id ID of the application stage to return

Example response:

{
"data": [
{
"id": "14833508-e59c-4177-86db-dda7575ff61e",
"type": "application_stage",
"attributes": {
...
}
},
{
...
}
]
}

This endpoint returns all application stages.

GET /api/v1/application_stages

Example response:

{
"data": {
"id": "459e0b1e-caa0-4960-be61-dad0dbcd969e",
"type": "application_stage",
"attributes": {
...
}
}
}

This endpoint deletes an application stage.

DELETE /api/v1/application_stages/:application_stage_id

ParameterDescription
application_stage_id ID of the application stage to delete