PayPal · Schema

Accept Offer Request

A customer request to accept the offer made by the merchant.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
note string The customer notes about accepting of offer. PayPal can but the merchant cannot view these notes.
View JSON Schema on GitHub

JSON Schema

paypal-accept-offer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/accept_offer",
  "title": "Accept Offer Request",
  "type": "object",
  "description": "A customer request to accept the offer made by the merchant.",
  "properties": {
    "note": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2000,
      "description": "The customer notes about accepting of offer. PayPal can but the merchant cannot view these notes."
    }
  }
}