VTEX · Schema

InvoiceData

Object with the order's billing data.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
userPaymentInfo object
View JSON Schema on GitHub

JSON Schema

vtex-invoicedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceData",
  "title": "InvoiceData",
  "description": "Object with the order's billing data.",
  "required": [
    "userPaymentInfo"
  ],
  "type": "object",
  "properties": {
    "userPaymentInfo": {
      "$ref": "#/components/schemas/UserPaymentInfo"
    }
  },
  "example": {
    "userPaymentInfo": {
      "paymentMethods": [
        "creditCardPaymentGroup"
      ]
    }
  }
}