Skip to content

Get Customer Tag

GET
/admin/customer-tags/{id}
curl --request GET \
--url 'http://localhost:9000/admin/customer-tags/example?limit=20&offset=0'
id
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
customer-tag
object
id
string
value
string
created_at
string format: date-time
updated_at
string format: date-time
Example generated
{
"customer-tag": {
"id": "example",
"value": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
}