編輯手動標籤名稱

Update client tag

post

Update client tag name and properties

Authorizations
Path parameters
tagIdstringRequired

The ID of the client tag to update

Query parameters
botIdstringRequired

The bot ID for the API request

Body
secretstringRequired

Secret key for API authentication

Example: your_secret_key_here
namestringRequired

The new name for the client tag

Example: Updated Client Tag Name
Responses
200

Client tag updated successfully

application/json
post
POST /api/openapi/clientTag/update/{tagId}?botId=text HTTP/1.1
Host: mantago.cc
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 66

{
  "secret": "your_secret_key_here",
  "name": "Updated Client Tag Name"
}
{
  "success": true,
  "message": "Update client tag successfully"
}

Last updated