Open API v2 / CRM & Orders / Customer Types

Customer Types

Every request needs a bearer token: Authorization: Bearer <token>. Base URL https://your-site.webinone.com. New to field types? See the type reference.

GET/api/v2/admin/customer-types#

Retrieves a list of customer types

Response
Idinteger
Unique identifier assigned by the platform.
Namestring · nullable
Name of the customer type.
IsDefaultboolean
Whether this is the customer type applied by default to new customers.
curl "https://your-site.webinone.com/api/v2/admin/customer-types" \
  -H "Authorization: Bearer <token>"
Response · 200
{
  "Items": [
    {
      "Id": 1,
      "Name": "Example",
      "IsDefault": false
    }
  ],
  "TotalItemsCount": 0
}