PayPal · Schema

Refund Status Details

The details of the refund status.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
reason string The reason why the refund has the `PENDING` or `FAILED` status.
View JSON Schema on GitHub

JSON Schema

paypal-refund-status-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/refund_status_details",
  "title": "Refund Status Details",
  "description": "The details of the refund status.",
  "type": "object",
  "properties": {
    "reason": {
      "description": "The reason why the refund has the `PENDING` or `FAILED` status.",
      "type": "string",
      "enum": [
        "ECHECK"
      ]
    }
  }
}