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

Get Payment Dispute Details

Production
https://api.ebay.com{basePath}
Production
https://api.ebay.com{basePath}
GET
/payment_dispute/{payment_dispute_id}
This method retrieves detailed information on a specific payment dispute. The payment dispute identifier is passed in as path parameter at the end of the call URI. Below is a summary of the information that is retrieved: Current status of payment dispute Amount of the payment dispute Reason the payment dispute was opened Order and line items associated with the payment dispute Seller response options if an action is currently required on the payment dispute Details on the results of the payment dispute if it has been closed Details on any evidence that was provided by the seller to fight the payment dispute

Request

Path Params

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🟠404Invalid Payment Dispute Id
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.ebay.com{basePath}/payment_dispute/'
Response Response Example
200 - Example 1
{
    "amount": {
        "currency": "string",
        "value": "string"
    },
    "availableChoices": [
        "string"
    ],
    "buyerProvided": {
        "note": "string",
        "returnShipmentTracking": [
            {
                "shipmentTrackingNumber": "string",
                "shippingCarrierCode": "string"
            }
        ]
    },
    "buyerUsername": "string",
    "closedDate": "string",
    "evidence": [
        {
            "evidenceId": "string",
            "evidenceType": "string",
            "files": [
                {
                    "fileId": "string",
                    "fileType": "string",
                    "name": "string",
                    "uploadedDate": "string"
                }
            ],
            "lineItems": [
                {
                    "itemId": "string",
                    "lineItemId": "string"
                }
            ],
            "providedDate": "string",
            "requestDate": "string",
            "respondByDate": "string",
            "shipmentTracking": [
                {
                    "shipmentTrackingNumber": "string",
                    "shippingCarrierCode": "string"
                }
            ]
        }
    ],
    "evidenceRequests": [
        {
            "evidenceId": "string",
            "evidenceType": "string",
            "lineItems": [
                {
                    "itemId": "string",
                    "lineItemId": "string"
                }
            ],
            "requestDate": "string",
            "respondByDate": "string"
        }
    ],
    "lineItems": [
        {
            "itemId": "string",
            "lineItemId": "string"
        }
    ],
    "monetaryTransactions": [
        {
            "amount": {
                "convertedFromCurrency": "string",
                "convertedFromValue": "string",
                "currency": "string",
                "exchangeRate": "string",
                "value": "string"
            },
            "date": "string",
            "reason": "string",
            "type": "string"
        }
    ],
    "openDate": "string",
    "orderId": "string",
    "paymentDisputeId": "string",
    "paymentDisputeStatus": "string",
    "reason": "string",
    "resolution": {
        "fees": {
            "currency": "string",
            "value": "string"
        },
        "protectedAmount": {
            "currency": "string",
            "value": "string"
        },
        "protectionStatus": "string",
        "reasonForClosure": "string",
        "recoupAmount": {
            "currency": "string",
            "value": "string"
        },
        "totalFeeCredit": {
            "currency": "string",
            "value": "string"
        }
    },
    "respondByDate": "string",
    "returnAddress": {
        "addressLine1": "string",
        "addressLine2": "string",
        "city": "string",
        "country": "string",
        "county": "string",
        "fullName": "string",
        "postalCode": "string",
        "primaryPhone": {
            "countryCode": "string",
            "number": "string"
        },
        "stateOrProvince": "string"
    },
    "revision": 0,
    "sellerResponse": "string"
}
Modified at 2022-09-11 20:21:04
Previous
/order/{orderId}/shipping_fulfillment/{fulfillmentId}
Next
Accept Payment Dispute
Built with