Get list of tags
GET/tags
List of tags
Request
Query Parameters
page stringrequired
Page of tags to get, default 1
Example: 1
search stringrequired
Text to search tags
Example: text
Header Parameters
Accept stringrequired
Example: application/json
Responses
- 200
- 400
- 401
- 404
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
Array [
]
tags
object[]
required
title stringrequired
status stringrequired
id stringrequired
date stringrequired
hidden stringrequired
full_title stringrequired
status stringrequired
{
"tags": [
{
"title": "string",
"status": "string",
"id": "string",
"date": "string",
"hidden": "string",
"full_title": "string"
}
],
"status": "string"
}
OK
{
"tags": [
{
"title": "<string>",
"status": "<string>",
"id": "<string>",
"date": "<string>",
"hidden": "<string>",
"full_title": "<string>"
},
{
"title": "<string>",
"status": "<string>",
"id": "<string>",
"date": "<string>",
"hidden": "<string>",
"full_title": "<string>"
}
],
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Bad Request
{
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Unauthorized
{
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Not Found
{
"status": "<string>"
}
Loading...