跳至主要内容

Review Seller Cancel Order Apply

HTTP Request

POST /v5/p2p/order/buyer/examine/sellerCancelOrderApply

信息

This endpoint can only be called by the buyer of the order when a seller cancel request is pending.

Request Parameters

ParameterRequiredTypeComments
orderIdtruestringThe ID of the order being reviewed
examineResulttruestringReview decision. PASS, REJECT
rejectReasonfalsestringReason for rejection. Required when examineResult is REJECT. Supported values: buyerRefuseOrderCancelReason_haveMadePayment, buyerRefuseOrderCancelReason_haveNotReceivedFullRefund, buyerRefuseOrderCancelReason_others
rejectProofsfalsestringEvidence/proof images for rejection, as comma-separated URLs or identifiers. Required when examineResult is REJECT
rejectRemarkfalsestringFree-text remark for rejection. Optional when examineResult is REJECT

Response Parameters

ParameterTypeComments
retCodeint0 for success, non-zero for error
retMsgstringResponse message
retExtInfoobjectExtended response information

Request Example

POST /v5/p2p/order/buyer/examine/sellerCancelOrderApply HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1741832094881
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

{
"orderId": "1234567890",
"examineResult": "REJECT",
"rejectReason": "ITEM_NOT_RECEIVED",
"rejectProofs": "https://example.com/proof1.jpg,https://example.com/proof2.jpg",
"rejectRemark": "I have not received the item yet."
}

Response Example

{
"retCode": 0,
"retMsg": "SUCCESS",
"retExtInfo": {}
}