List all tags of a project
Path Parameters
- project_id integer required
ID of the project
Query Parameters
- classes boolean
if true, the whole class object will be returned instead of just strings
- labels boolean
if true, the whole label object will be returned instead of just strings
- offset integer
An offset is simply the number of records you wish to skip before selecting records.
- limit integer
Limit of entries that should be returned.
Responses
- 200
- 401
- 403
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
tags object[]
A list of tags
class stringThe class's name.
label stringThe label's name.
- offset integer
An offset is simply the number of records you wish to skip before selecting records.
- limit integer
Limit of entries that should be returned.
- count integer
Number of objects returned
- total integer
Deprecated. Total of tags
{
"tags": [
{
"class": "Comfort",
"label": "POS"
}
],
"offset": 0,
"limit": 10,
"count": 10,
"total": 10
}
User is not authenticated. This means token is either not present or invalid
User does not have the minimal required project role "VIEWER"
Something is wrong with the API.
Loading...