Skip to content
💡 Want to test this API interactively? Open API Playground ↗

Submit After-sales Approval ​

Approve or reject a buyer's after-sales (refund) request for a specific order.

Basic Information ​

PropertyValue
MethodPOST
Path/seller/order/{orderId}/after-sales/seller-audit
AuthenticationBearer Token
Content-Typeapplication/json

Path Parameters ​

ParameterTypeRequiredDescription
orderIdintegerYesOrder ID

Request Headers ​

HeaderTypeRequiredDescription
AuthorizationstringYesBearer <accessToken>

Request Body Parameters ​

ParameterTypeRequiredDescription
isApprovedbooleanYesWhether to approve the refund request
rejectDescriptionstringNoRejection reason (optional when approving, mandatory when rejecting)
rejectImageUrlsarray[string]NoRejection evidence image URLs

Request Examples ​

Approve Refund ​

http
POST /merchant-api/seller/order/1689644928115784/after-sales/seller-audit HTTP/1.1
Host: paas-gateway.imetastore.io
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
Content-Type: application/json

{
  "isApproved": true
}

Reject Refund ​

http
POST /merchant-api/seller/order/1689644928115784/after-sales/seller-audit HTTP/1.1
Host: paas-gateway.imetastore.io
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
Content-Type: application/json

{
  "isApproved": false,
  "rejectDescription": "The item was already delivered and redeemed by the buyer",
  "rejectImageUrls": ["https://example.com/proof.png"]
}

Success Response ​

json
{
  "code": "0000",
  "msg": "Success",
  "time": "2025-12-17T13:44:16.000Z",
  "data": true
}

All game copyrights, trademarks, and service marks belong to their respective owners.