# List CRM statuses in group Retrieve all CRM statuses within the specified status group. Endpoint: GET /partner/v2/account/{accountId}/crm-status-group/{groupId}/status Version: 2.0 Security: PartnerOAuth ## Query parameters: - `active` (boolean) Filter by active status - `cursor` (string) Pagination cursor from previous response - `limit` (integer) Number of results per page (max 100) Example: 20 ## Path parameters: - `accountId` (integer, required) Account identifier ## Response 200 fields (application/json): - `nextCursor` (string) Opaque cursor for fetching the next page. Null if no more results. - `statuses` (array) List of CRM statuses - `statuses.active` (boolean) Whether this status is active Example: true - `statuses.color` (string) Display color (hex code) Example: "#2196F3" - `statuses.createdAt` (string) Creation timestamp Example: "2024-01-01T10:00:00Z" - `statuses.description` (string) Status description Example: "Lead has just been created" - `statuses.groupId` (integer) Parent status group ID Example: 111 - `statuses.id` (integer) Unique CRM status identifier Example: 12345 - `statuses.isDefault` (boolean) Whether this is the default status in the group Example: true - `statuses.name` (string) Status name Example: "New Lead" - `statuses.sortOrder` (integer) Sort order for display within the group Example: 1 - `statuses.updatedAt` (string) Last update timestamp Example: "2025-01-10T14:30:00Z" ## Response 401 fields ## Response 403 fields ## Response 404 fields