API Docs
Update Tag PUT
This endpoint allows you to update a single Tag by name.
https://t2mio.com/api/v1/tags/:NAME
Request
| Parameter | Type | Position | Constraint | Description |
|---|---|---|---|---|
| apikey | string |
Header |
Required |
Your 20-30 characters unique api key. |
| apisecret | string |
Header |
Required |
Your 12-20 characters unique api secret. |
| Content-Type | string |
Header |
Required |
Value: application/json |
| name | string |
Body |
Optional |
Tag name. Must be unique. Max: 25 characters |
| description | string |
Body |
Optional |
Optional tag description (plain text only). Max: 255 characters |
Sample request data
{
"name":"sample-tag",
"description":"sample tag description"
}
Response
{
"status": 200,
"message": "ok",
"data": {
"rows_updated": 1
}
}