取得自動標籤

Get specific auto tag

post

Retrieve detailed information about a specific auto tag

Authorizations
Path parameters
autoTagIdstringRequired

The ID of the auto tag to retrieve

Query parameters
botIdstringRequired

The bot ID for the API request

Body
secretstringRequired

Secret key for API authentication

Example: your_secret_key_here
Responses
200

Auto tag information retrieved successfully

application/json
Responseall of
post
POST /api/openapi/autoTag/get/{autoTagId}?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",
  "autoTag": {
    "id": "text",
    "name": "text",
    "confidence": 1,
    "lifeCycle": "text",
    "isActive": true
  }
}

Last updated