建立自動標籤
Create a new auto tag for automatic 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 auto tag
New Auto Tag
Responses
200
Auto tag created successfully
application/json
401
JWT token is invalid or expired
application/json
403
Permission denied - insufficient access rights
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/autoTag HTTP/1.1
Host: mantago.cc
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"secret": "your_secret_key_here",
"name": "New Auto Tag"
}
{
"success": true,
"message": "Create auto tag successfully"
}
Last updated