Skip to content

Get CRM status group by ID

Request

Retrieve detailed information about a specific CRM status group.

Security
PartnerApiKey and PartnerOAuth
Path
groupIdinteger, (int64)required

CRM status group 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}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

CRM status group found and returned successfully

Bodyapplication/json
activeboolean

Whether this group is active

Example:true
createdAtstring, (date-time)

Creation timestamp (UTC)

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

Unique CRM status group identifier

Example:12345
namestring

Group name

Example:"Lead Stages"
statusCountinteger, (int32)

Number of statuses in this group

Example:5
updatedAtstring, (date-time)

Last update timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
Response
{ "active": true, "createdAt": "2025-01-15T14:00:00Z", "id": 12345, "name": "Lead Stages", "statusCount": 5, "updatedAt": "2025-01-15T14:00:00Z" }