Skip to main content
POST
/
accounts
/
{account_id}
/
company-statuses
Create a company status
curl --request POST \
  --url https://www.useroulette.com/api/v1/accounts/{account_id}/company-statuses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "IC Review",
  "color": "#F59E0B",
  "description": "Awaiting Investment Committee review"
}'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status_text": "Initial Review",
    "color": "#3B82F6",
    "rank": 123
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

account_id
string<uuid>
required

Body

application/json
name
string
required
Maximum length: 100
color
string
default:#6B7280
rank
integer
description
string
is_default
boolean
default:false

Response

success
boolean
data
object