Skip to main content
GET
/
customer-groups
/
{customerGroupId}
/
customers
List Customers in Customer Group
curl --request GET \
  --url https://api.mijnklantportaal.nl/v1/customer-groups/{customerGroupId}/customers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "cst_abc12345def678",
      "companyName": "Test Company BV",
      "address": "Teststreet 123",
      "zipCode": "1234AB",
      "city": "Amsterdam",
      "primaryEmail": "john.doe@test.com",
      "phone": "+312012345678",
      "integration": "acumulus",
      "integrationId": "123456789",
      "customerGroups": [
        "cug_123abc567"
      ],
      "createdAt": "2024-04-28T21:00:00+02:00"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customerGroupId
string
required

ID of the customer group to return the customers of

Response

Non-paginated response with customers

data
object[]

Array of Customer objects

I