BigCommerce · Schema

RefundRequest_Post

Request body for refund requests.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
items array
payments array
merchant_calculated_override object
View JSON Schema on GitHub

JSON Schema

bigcommerce-refundrequest-post-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RefundRequest_Post",
  "title": "RefundRequest_Post",
  "type": "object",
  "description": "Request body for refund requests.",
  "x-internal": false,
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ItemsRefund"
      }
    },
    "payments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentRequest"
      }
    },
    "merchant_calculated_override": {
      "$ref": "#/components/schemas/MerchantOverride"
    }
  },
  "required": [
    "items",
    "payments"
  ],
  "x-examples": {}
}