Search customer groups
GET
https://app.ecwid.com/api/v3/{storeId}/customer_groups
Required access scopes
Your app must have the following access scopes to make this request: read_customers
Path params
All path params are required.
storeId
number
Ecwid store ID.
Query params
All query params are optional.
customerGroupId
number
Search specific customer groups by listing their IDs.
Supports multiple values, for example: 13456, 35678, 57890
keyword
string
Search term for the customer group name.
offset
number
Maximum number of returned items. Default value: 100
. Maximum allowed value: 1000
.
limit
number
Limit to the number of returned items. Maximum and default value (if not specified) is 100
.
responseFields
string
Specify the exact fields to receive in response JSON. If not specified, the response JSON will have all available fields for the entity.
Example: ?responseFields=total,items(name)
Example of using responseFields
param:
Headers
The Authorization header is required.
Authorization
Bearer secret_ab***cd
Access token of the application.
Response JSON
A JSON object with the following fields:
total
number
Total number of found items (might be more than the number of returned items).
count
number
Total number of items returned in the response.
offset
number
Offset from the beginning of the returned items list specified in the request.
limit
number
Maximum number of returned items specified in the request. Maximum and default value: 100
.
items
Detailed information about returned customer groups.
items
id
number
Unique internal ID of the customer group.
name
string
Customer group name visible to customers on the storefront.
Last updated
Was this helpful?