# List CRM status groups Retrieve the list of CRM status groups defined for the account. Endpoint: GET /partner/v2/account/{accountId}/crm-status-group 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. - `statusGroups` (array) List of CRM status groups - `statusGroups.active` (boolean) Whether this group is active Example: true - `statusGroups.createdAt` (string) Creation timestamp Example: "2024-01-01T10:00:00Z" - `statusGroups.description` (string) Group description Example: "Tracks the progression of leads through the sales funnel" - `statusGroups.id` (integer) Unique CRM status group identifier Example: 12345 - `statusGroups.name` (string) Group name Example: "Lead Stages" - `statusGroups.sortOrder` (integer) Sort order for display Example: 1 - `statusGroups.statusCount` (integer) Number of statuses in this group Example: 5 - `statusGroups.updatedAt` (string) Last update timestamp Example: "2025-01-10T14:30:00Z" ## Response 401 fields ## Response 403 fields