PayPal · Schema

Mandate

Seller’s consent to operate on this financial instrument.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
accepted boolean Whether mandate was accepted or not.
View JSON Schema on GitHub

JSON Schema

paypal-mandate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/mandate",
  "title": "Mandate",
  "type": "object",
  "description": "Seller\u2019s consent to operate on this financial instrument.",
  "additionalProperties": false,
  "properties": {
    "accepted": {
      "type": "boolean",
      "description": "Whether mandate was accepted or not."
    }
  },
  "required": [
    "accepted"
  ]
}