Skip to content

Get CRM status by ID

Request

Retrieve detailed information about a specific CRM status.

Security
PartnerApiKey and PartnerOAuth
Path
groupIdinteger, (int64)required

CRM status group ID

statusIdinteger, (int64)required

CRM status ID

accountIdinteger, (int64)required

Account identifier

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/crm-status-group/{groupId}/status/{statusId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

CRM status found and returned successfully

Bodyapplication/json
activeboolean

Whether this status is active

Example:true
colorstring

Display color (hex code)

Example:"#2196F3"
createdAtstring, (date-time)

Creation timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
groupIdinteger, (int64)

Parent status group ID

Example:111
idinteger, (int64)

Unique CRM status identifier

Example:12345
isDefaultboolean

Whether this is the default status in the group (first by sort order)

Example:true
namestring

Status name

Example:"New Lead"
sortOrderinteger, (int32)

Sort order for display within the group

Example:1
updatedAtstring, (date-time)

Last update timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
Response
{ "active": true, "color": "#2196F3", "createdAt": "2025-01-15T14:00:00Z", "groupId": 111, "id": 12345, "isDefault": true, "name": "New Lead", "sortOrder": 1, "updatedAt": "2025-01-15T14:00:00Z" }