Bolt · Schema

Payment by reference Method

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string
id string Payment ID of the saved Bolt Payment method.
View JSON Schema on GitHub

JSON Schema

payment-method-reference.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/payment-method-reference",
  "title": "Payment by reference Method",
  "type": "object",
  "required": [
    ".tag",
    "id"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "id"
      ],
      "example": "id"
    },
    "id": {
      "type": "string",
      "format": "id",
      "description": "Payment ID of the saved Bolt Payment method.",
      "example": "X5h6j8uLpVGK"
    }
  }
}