API Reference
Reference for the API
Create a new group under the authenticated partner. Requires a partner API token.
cURL
curl --request POST \ --url https://cookiechimp.com/api/v1/groups \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "external_id": "<string>", "max_pageviews_per_month": 123 } '
{ "id": "abc123", "name": "Example Ltd", "external_id": "ABC_123", "partner": "partner_one", "max_pageviews_per_month": 500000 }
API token obtained from the login endpoint or the dashboard
Group to create
Name of the group
External ID set by the partner
Maximum number of pageviews per month
Created group
Unique identifier for the group
Was this page helpful?