編輯個性化標籤名稱
Update personal tag name and properties
Authorizations
Path parameters
tagIdstringRequired
The ID of the personal tag to update
Query parameters
botIdstringRequired
The bot ID for the API request
Body
secretstringRequiredExample:
Secret key for API authentication
your_secret_key_here
namestringRequiredExample:
The new name for the personal tag
Updated Personal Tag Name
Responses
200
Personal tag updated successfully
application/json
401
JWT token is invalid or expired
application/json
403
Permission denied or personal tag update failed
application/json
404
OpenAPI configuration not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
POST /api/openapi/personalTag/update/{tagId} HTTP/1.1
Host: mantago.cc
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 68
{
"secret": "your_secret_key_here",
"name": "Updated Personal Tag Name"
}
{
"success": true,
"message": "Operation completed successfully"
}
Last updated