Skip to main content
POST
/
statuses
Create status
curl --request POST \
  --url https://inboxapp.com/api/v1/statuses \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "color": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "color": "#ef4444",
  "createdAt": "2023-11-07T05:31:56Z"
}

Body

application/json
name
string
required

The name of the status. Must be unique within the team. Maximum 255 characters.

Required string length: 1 - 255
color
string

Color value. Can be a hex code (e.g., #3b82f6) or a color name (e.g., 'blue', 'red'). Use the /colors endpoint to get available color names.

Response

200 - application/json

OK

id
string
required

Unique identifier for the status.

name
string
required

The display name of the status. Typically represents a stage in your sales pipeline.

color
string | null
required

Hex color code for the status (e.g., #10b981 for green). Null if no color is set.

Example:

"#ef4444"

createdAt
string<date-time>
required

The timestamp when this status was created.