For the complete documentation index, see llms.txt. This page is also available as Markdown.

Update Personal Tag Name

Update personal tag

post

Update personal tag name and properties

Authorizations
AuthorizationstringRequired

Bearer token for API authentication

Path parameters
tagIdstringRequired

The ID of the personal tag to update

Query parameters
botIdstringRequired

The bot ID for the API request

Body
secretstringRequired

Secret key for API authentication

Example: your_secret_key_here
namestringRequired

The new name for the personal tag

Example: Updated Personal Tag Name
Responses
200

Personal tag updated successfully

application/json
successbooleanRequiredExample: true
messagestringRequiredExample: Operation completed successfully
post/openapi/personalTag/update/{tagId}
POST /api/openapi/personalTag/update/{tagId}?botId=text HTTP/1.1
Host: mantago.cc
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 68

{
  "secret": "your_secret_key_here",
  "name": "Updated Personal Tag Name"
}
{
  "success": true,
  "message": "Operation completed successfully"
}