Fulfillment API
  1. payment_dispute
Fulfillment API
  • order
    • /order
      GET
    • /order/{orderId}
      GET
    • Issue Refund
      POST
  • shipping_fulfillment
    • /order/{orderId}/shipping_fulfillment
      GET
    • /order/{orderId}/shipping_fulfillment
      POST
    • /order/{orderId}/shipping_fulfillment/{fulfillmentId}
      GET
  • payment_dispute
    • Get Payment Dispute Details
      GET
    • Accept Payment Dispute
      POST
    • Get Payment Dispute Activity
      GET
    • Add an Evidence File
      POST
    • Contest Payment Dispute
      POST
    • Get Payment Dispute Evidence File
      GET
    • Update evidence
      POST
    • Upload an Evidence File
      POST
    • Search Payment Dispute by Filters
      GET
  • Schemas
    • Schemas
      • AcceptPaymentDisputeRequest
      • AddEvidencePaymentDisputeRequest
      • AddEvidencePaymentDisputeResponse
      • Address
      • Amount
      • AppliedPromotion
      • Buyer
      • CancelRequest
      • CancelStatus
      • ContestPaymentDisputeRequest
      • DeliveryCost
      • DisputeAmount
      • DisputeEvidence
      • DisputeSummaryResponse
      • EbayCollectAndRemitTax
      • EbayFulfillmentProgram
      • EbayTaxReference
      • Error
      • ErrorParameter
      • EvidenceRequest
      • ExtendedContact
      • FileEvidence
      • FileInfo
      • FulfillmentStartInstruction
      • GiftDetails
      • InfoFromBuyer
      • IssueRefundRequest
      • ItemLocation
      • LegacyReference
      • LineItem
      • LineItemFulfillmentInstructions
      • LineItemProperties
      • LineItemReference
      • LineItemRefund
      • MonetaryTransaction
      • Order
      • OrderLineItems
      • OrderRefund
      • OrderSearchPagedCollection
      • Payment
      • PaymentDispute
      • PaymentDisputeActivity
      • PaymentDisputeActivityHistory
      • PaymentDisputeOutcomeDetail
      • PaymentDisputeSummary
      • PaymentHold
      • PaymentSummary
      • Phone
      • PhoneNumber
      • PickupStep
      • PostSaleAuthenticationProgram
      • PricingSummary
      • Program
      • Refund
      • RefundItem
      • ReturnAddress
      • SellerActionsToRelease
      • ShippingFulfillment
      • ShippingFulfillmentDetails
      • ShippingFulfillmentPagedCollection
      • ShippingStep
      • SimpleAmount
      • Tax
      • TaxAddress
      • TaxIdentifier
      • TrackingInfo
      • UpdateEvidencePaymentDisputeRequest
  1. payment_dispute

Contest Payment Dispute

Production
https://api.ebay.com{basePath}
Production
https://api.ebay.com{basePath}
POST
/payment_dispute/{payment_dispute_id}/contest
This method is used if the seller wishes to contest a payment dispute initiated by the buyer. The unique identifier of the payment dispute is passed in as a path parameter, and unique identifiers for payment disputes can be retrieved with the getPaymentDisputeSummaries method. Note: Before contesting a payment dispute, the seller must upload all evidence files using the addEvidence and updateEvidence methods. Once the seller has officially contested the dispute (using contestPaymentDispute), the addEvidence and updateEvidence methods can no longer be used. In the evidenceRequests array of the getPaymentDispute response, eBay prompts the seller with the type of evidence file(s) that will be needed to contest the payment dispute. If a seller decides to contest a payment dispute, that seller should be prepared to provide evidential documents such as proof of delivery, proof of authentication, or other documents. The type of evidential documents that the seller will provide will depend on why the buyer initiated the payment dispute. The revision field in the request payload is required, and the returnAddress field should be supplied if the seller is expecting the buyer to return the item. See the Request Payload section for more information on theste fields.

Request

Path Params

Body Params application/json

Examples

Responses

🟢204Success
application/json
Body

🟠400Bad Request
🟠404Not Found
🟠409Conflict
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://api.ebay.com{basePath}/payment_dispute//contest' \
--header 'Content-Type: application/json' \
--data-raw '{
    "returnAddress": {
        "addressLine1": "string",
        "addressLine2": "string",
        "city": "string",
        "country": "string",
        "county": "string",
        "fullName": "string",
        "postalCode": "string",
        "primaryPhone": {
            "countryCode": "string",
            "number": "string"
        },
        "stateOrProvince": "string"
    },
    "revision": 0
}'
Response Response Example
204 - Example 1
{}
Modified at 2022-09-11 20:21:04
Previous
Add an Evidence File
Next
Get Payment Dispute Evidence File
Built with