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

Create

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.

HTTP Request

POST /api/v1/application_stages

Update

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.

HTTP Request

PUT /api/v1/application_stages/:application_stage_id

URL Parameters

ParameterDescription
application_stage_id ID of the application stage to be updated

Show

Example response:

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

This endpoint returns an application stage.

HTTP Request

GET /api/v1/application_stages/:application_stage_id

URL Parameters

ParameterDescription
application_stage_id ID of the application stage to return

List

Example response:

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

This endpoint returns all application stages.

HTTP Request

GET /api/v1/application_stages

Delete

Example response:

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

This endpoint deletes an application stage.

HTTP Request

DELETE /api/v1/application_stages/:application_stage_id

URL Parameters

ParameterDescription
application_stage_id ID of the application stage to delete