取得個性化標籤
Retrieve detailed information about a specific personal tag
Authorizations
AuthorizationstringRequired
Bearer token for API authentication
Path parameters
tagIdstringRequired
The ID of the personal tag to retrieve
Query parameters
botIdstringRequired
The bot ID for the API request
Body
secretstringRequiredExample:
Secret key for API authentication
your_secret_key_hereResponses
200
Personal tag information retrieved successfully
application/json
Responseall of
401
JWT token is invalid or expired
application/json
403
Permission denied - insufficient access rights
application/json
404
Personal tag or OpenAPI configuration not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
/openapi/personalTag/get/{tagId}POST /api/openapi/personalTag/get/{tagId}?botId=text HTTP/1.1
Host: mantago.cc
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"secret": "your_secret_key_here"
}{
"success": true,
"message": "Operation completed successfully",
"personalTag": {
"id": "text",
"name": "text",
"count": 1
}
}Last updated