List customer tags
Returns all tags currently applied to customers in this shop.
GET
/shops/{shop_id}/customer_tagsAuthorization
AuthorizationBearer token (JWT) · headerrequiredPath parameters
shop_idintegerrequiredResponses
200Customer tags list
Request
curl -X GET "https://api.onbolder.com/v2/shops/1/customer_tags" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.onbolder.com/v2/shops/1/customer_tags", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.onbolder.com/v2/shops/1/customer_tags",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"_class": [
"results",
"tags"
],
"_embedded": {
"items": [
{
"name": "vip"
},
{
"name": "newsletter"
}
]
}
}