建立手動標籤
Create a new client tag for bot client categorization
Authorizations
Query parameters
botIdstringRequired
The bot ID for the API request
Body
secretstringRequiredExample:
Secret key for API authentication
your_secret_key_here
namestringRequiredExample:
The name of the client tag
Important Client
Responses
200
Client tag created successfully
application/json
401
JWT token is invalid or expired
application/json
403
Permission denied or client tag creation failed
application/json
404
OpenAPI configuration not found or tag query failed
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
POST /api/openapi/clientTag HTTP/1.1
Host: mantago.cc
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 59
{
"secret": "your_secret_key_here",
"name": "Important Client"
}
{
"success": true,
"message": "Create client tag successfully"
}
Last updated