Tag
Resource 'Tag' operations.
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
pageintegerOptionalDefault:
The collection page number
1Responses
200
Tag collection
403
Forbidden
get
/tagsGET /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
}
]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
403
Forbidden
404
Not found
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