Tag

Resource 'Tag' operations.

List all tags

get

Returns a list of tags. The tags are returned in descending order by creation date.

Authorizations
x-api-keystringRequired

Value for the x-api-key header parameter.

Query parameters
pageintegerOptional

The collection page number

Default: 1
Responses
200

Tag collection

get
/tags
GET /tags HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "createdAt": "2025-11-20T23:57:07.660Z",
    "updatedAt": "2025-11-20T23:57:07.660Z",
    "name": "text",
    "systemDefined": false
  }
]

Retrieve a tag

get

Retrieves a Tag resource.

Authorizations
x-api-keystringRequired

Value for the x-api-key header parameter.

Path parameters
idstringRequired

Tag identifier

Responses
200

Tag resource

get
/tags/{id}
GET /tags/{id} HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "id": 1,
  "createdAt": "2025-11-20T23:57:07.660Z",
  "updatedAt": "2025-11-20T23:57:07.660Z",
  "name": "text",
  "systemDefined": false
}

Last updated