Tags
Create a new tag
Query parameters
apiKeystringOptionalExample:
API key for authentication
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
Retrieve a specific tag by name
Path parameters
namestringRequired
Query parameters
apiKeystringOptionalExample:
API key for authentication
your_api_key
Responses
200
Tag found
application/json
404
Tag not found
get
GET /v1/tags/{name} HTTP/1.1
Host: api.dmchamp.com
Accept: */*
{
"name": "text",
"description": "text"
}
Was this helpful?