Customer
List Customer Tags
List all tags of a customer
GET
/
customer
/
{id}
/
tags
Authorization
Path
curl --request GET \
--url https://chat.zoko.io/v2/customer/{id}/tags \
--header 'apikey: <apikey>'
{
"entityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entityType": "customer",
"tags": "high-value"
}
Authorizations
apikey
string
headerrequiredAuthentication is done via apikey
provided for your account
Include the following in your request header
apikey: "your_apikey_here"
Path Parameters
id
string
requiredID of customer
Response
200 - application/json
entityId
string
entityType
enum<string>
Available options:
customer
tags
string[]
curl --request GET \
--url https://chat.zoko.io/v2/customer/{id}/tags \
--header 'apikey: <apikey>'
{
"entityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entityType": "customer",
"tags": "high-value"
}