To retrieve all custom tag names that match the specified criteria, use the following request:
GET /custom-tag-names
Example request
GET /custom-tag-names HTTP/1.1 Authorization: Bearer f794846b7c26621688e1e06164975b4eae8ce2f6
Response
The LAC REST API returns the standard HTTP response codes described in the following table.
| Status Code | Description |
|---|---|
| 200 OK | Custom tag names list. |
| 403 Forbidden | Invalid or expired token provided. |
Example Response
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"name": "Customer",
"CustomTags": [
{
"tag_name": "custom_tag_1",
"value": null,
"creation_time": null,
"update_time": null
},
{
"tag_name": "custom_tag_2",
"value": null,
"creation_time": null,
"update_time": null
}
]
}
]