Skip to main content
POST
/
development_stages
Add a new development stage
curl --request POST \
  --url https://api.rechain.co/public/v1/development_stages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Development Stage Name",
  "position": 5,
  "company_id": "123e4567-e89b-12d3-a456-426614174000",
  "isDefault": true,
  "color": "gray"
}
'
{
  "name": "Development Stage Name",
  "position": 5,
  "company_id": "123e4567-e89b-12d3-a456-426614174000",
  "isDefault": true,
  "color": "gray",
  "id": "123e4567-e89b-12d3-a456-426614174000"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Create a new development stage

name
string
required
Example:

"Development Stage Name"

company_id
string
required
Example:

"123e4567-e89b-12d3-a456-426614174000"

position
integer
Example:

5

isDefault
boolean
Example:

true

color
string
Example:

"gray"

Response

Successful operation

id
string
Example:

"123e4567-e89b-12d3-a456-426614174000"