Tags

Get All Tags

get

Retrieve all tags

Query parameters
apiKeystringOptional

API key for authentication

Example: your_api_key
Responses
200
List of tags
application/json
get
GET /v1/tags HTTP/1.1
Host: api.dmchamp.com
Accept: */*
200

List of tags

[
  {
    "name": "text",
    "description": "text"
  }
]

Create New Tag

post

Create a new tag

Query parameters
apiKeystringOptional

API key for authentication

Example: your_api_key
Body
namestringRequired

Tag name

descriptionstringOptional

Tag description

Responses
201
Tag created successfully
post
POST /v1/tags HTTP/1.1
Host: api.dmchamp.com
Content-Type: application/json
Accept: */*
Content-Length: 36

{
  "name": "text",
  "description": "text"
}
201

Tag created successfully

No content

Get Tag by Name

get

Retrieve a specific tag by name

Path parameters
namestringRequired
Query parameters
apiKeystringOptional

API key for authentication

Example: your_api_key
Responses
200
Tag found
application/json
get
GET /v1/tags/{name} HTTP/1.1
Host: api.dmchamp.com
Accept: */*
{
  "name": "text",
  "description": "text"
}

Was this helpful?