v1

latestOpenAPI 3.0.2EULA2026-07-143221521.2 MB
Customer types

Get all customer types

Get a list of customer types accepted in the CareCloud platform.

Customer types categorise customer accounts by their role or origin - for example, a standard loyalty member, a staff account, or a B2B contact. The customer type is assigned when the account is created and can be used to filter or segment customers.

Use this endpoint to retrieve the available customer type IDs for use when creating or updating customer accounts.

get/customer-types

Query parameters

countinteger

The number of records to return in API response.

⚠️ We recommended adjust the batch size based on processing time. Depending on the response time of the request. Default value of 100 records is used if count parameter is not set.

offsetinteger

The number of records from a collection to skip. Default value of 0 is used when parameter offset is not set.

sort_fieldstring

Name of the sorting parameter. You can sort by any of the first level parameters from the resource response. Response is sorted by the specified field.

sort_direction'ASC' | 'DESC'

Direction of sorting the response list.

Headers

Accept-Languagestring

The unique ID of the language code by ISO 639-1.

Response

OK

Example response

{
  "data": {
    "customer_types": [
      {
        "type_id": "86e05affc7a7abefcd513ab400",
        "name": "club",
        "last_change": "2017-12-01 14:29:41"
      }
    ],
    "total_items": 1
  }
}