Cancel RTP Control
Cancels an RTP control rule for a merchant by rule ID. Obtain the rule ID from the Query RTP API.
Request URL
POST {API_URL_ROOT}/RtpControl/Cancel
Request Parameters
Header
| Field | Required | Type | Description |
|---|---|---|---|
| sign | YES | string | Signature computed using the Signature Algorithm. |
| timestamp | YES | int | UTC timestamp in seconds since 1970-01-01, e.g. 1741837297. |
| Accept-Language | YES | string | Response language code. See Language List, e.g. zh or en. |
| Content-Type | YES | string | "application/json; charset=utf-8" |
Body
| Field | Required | Type | Description |
|---|---|---|---|
| tenantId | YES | int | Unique merchant ID assigned by the platform. |
| ruleId | YES | string | ID of the RTP control rule to cancel. |
Example
{
"tenantId": 1,
"ruleId": "6897fcb02c0b34545b95a001"
}
Response Parameters
A standard success response is returned when the operation succeeds.
Example
{
"isSuccess": true,
"code": 0,
"message": "ok"
}