Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To retrieve all customers custom tag names that match the specified criteria, use the following request:

...

The LAC REST API returns the standard HTTP response codes described in the following table.

Status CodeDescription
200 OK
Activation counters object
Custom tag names list.
403 ForbiddenInvalid or expired token provided.

Example Response

Code Block
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
			}
		]
	}
]

...