Skip to main content

Update a Specific Tag

This endpoint updates a specific tag

info

This operation requires authentication and admin role.

HTTP Request

PUT /api/v2/tag/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this user tag
bodybodyTagfalseThe request body(tag params)

Example Body Parameters

{
"active": "boolean",
"type": "string",
"name": "string",
"description": "string",
"color": "string",
"visible": "boolean",
"visibility_boost": "boolean",
"deleted": "boolean"
}

Example Request

const inputBody = '{
"active": "boolean",
"type": "string",
"name": "string",
"description": "string",
"color": "string",
"visible": "boolean",
"visibility_boost": "boolean",
"deleted": "boolean"
}';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/tag/{id}/',
{
method: 'PUT',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeTag

Example responses

{
"id": "integer",
"type": "string",
"name": "string",
"description": "string",
"color": "string",
"visible": "boolean",
"visibility_boost": "boolean",
"created_at": "string",
"active": "boolean",
"deleted": "boolean"
}