Retrieve a list of tags
GET/projects/:projectSlug/tags
Retrieve a list of tags for the authenticated project.
Request
Path Parameters
projectSlug stringrequired
The slug for the project to retrieve tags for. E.g. for app.zli.bz/acme
, the projectSlug is acme
.
Responses
- 200
A list of tags
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id cuid
The unique ID of the tag.
name string
The name of the tag.
color string
The color of the tag.
[
{
"id": "string",
"name": "string",
"color": "string"
}
]
Loading...