Skip to content

撤销取消订单

PUT
/openapi/v3/orders/:id/cancel/recall

在发起取消订单后,可通过该接口撤回取消操作。仅当订单处于“取消确认”状态时才能撤销取消;其他状态不可撤销。

Path 参数

参数类型必填说明
idstring订单 ID
bash
curl -X PUT 'https://api.certcloud.cn/openapi/v3/orders/F7vbIVYL/cancel/recall' \
  -H 'Content-Type: application/json' \
  -H 'X-CC-Auth-Key: your-auth-key' \
  -H 'X-CC-Key-ID: your-key-id'
200成功
json
{
  "code": "success"
}