Last updated 3 months ago
Was this helpful?
Retrieve a specific tag by name
API key for authentication
your_api_key
GET /v1/tags/{name} HTTP/1.1 Host: api.dmchamp.com Accept: */*
Tag found
{ "name": "text", "description": "text" }
Retrieve all tags
GET /v1/tags HTTP/1.1 Host: api.dmchamp.com Accept: */*
List of tags
[ { "name": "text", "description": "text" } ]
Create a new tag
Tag name
Tag description
POST /v1/tags HTTP/1.1 Host: api.dmchamp.com Content-Type: application/json Accept: */* Content-Length: 36 { "name": "text", "description": "text" }
Tag created successfully
No content