Skip to main content

9.1 Cancel the merchant’s collection order (via the merchant’s local order number)

#Brief description: This interface is used to cancel the merchant's collection order (through the merchant's local order number)

Query parameters

Parameter nameTypeRequiredParameter meaningParameter description
keystringYesMerchant keyapiKey
merchantIdstringYesMerchant IDObtained by logging into the merchant backend
localOrderIdstringYesMerchant local order number
signstringYesSignatureSee Signature Algorithm for details
Request json sample
{
"key": "9yUreYgTRtit39Dy",
"merchantId":302992856974,
"localOrderId": "conan41121",
"sign": "8c4136cbe2ddfebe3e8c170f5d849c33"
}

Response value

Parameter nameTypeParameter meaningParameter description
codeint32Request statusReturn code, 0 means the business is successful, otherwise it represents a different error
successbooleanSuccess statusSuccess identification, consistent with code=0, used for compatibility history
messagestringDescriptionError message. If there is an error, the error message returned
datajsonReturn dataDefault null
Response Example
{
"code": 0,
"success": true,
"message": null,
"data": null
}