Skip to main content

Endpoints

MethodPathDescription
GET/api/v2/statusesList room statuses

List room statuses

GET /api/v2/statuses Returns all room statuses available in the organization. Use a returned id as statusId when creating or updating a room.
curl https://api.flowla.com/api/v2/statuses \
  -H "x-flowla-api-key: YOUR_API_KEY"

Response

id
string
Status identifier. Use this as statusId when creating or updating a room.
title
string
Display name of the status.
defaultStatus
boolean
true if this status is automatically assigned to new rooms.
Response 200
[
  { "id": "st_01ab2", "title": "In Progress", "defaultStatus": true },
  { "id": "st_01xy9", "title": "Closed Won", "defaultStatus": false }
]
Colors and other visual metadata are not included in the API response.