eBay · Schema

PaymentDisputeActivityHistory

This type is used by the base response of the getActivities method, and includes a log of all activities of a payment dispute, from creation to resolution.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
activity array This array holds all activities of a payment dispute, from creation to resolution. For each activity, the activity type, the actor, and a timestamp is shown. The getActivities respons
View JSON Schema on GitHub

JSON Schema

ebay-paymentdisputeactivityhistory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentDisputeActivityHistory",
  "title": "PaymentDisputeActivityHistory",
  "type": "object",
  "properties": {
    "activity": {
      "type": "array",
      "description": "This array holds all activities of a payment dispute, from creation to resolution. For each activity, the activity type, the actor, and a timestamp is shown. The <strong>getActivities</strong> response is dynamic, and grows with each recorded activity.",
      "items": {
        "$ref": "#/components/schemas/PaymentDisputeActivity"
      }
    }
  },
  "description": "This type is used by the base response of the <strong>getActivities</strong> method, and includes a log of all activities of a payment dispute, from creation to resolution."
}