GOV.UK Pay · Schema

PrefilledCardholderDetails

prefilled_cardholder_details

PaymentsGovernmentUKPublic SectorRESTPCI DSSRefundsRecurring PaymentsWebhooks

Properties

Name Type Description
billing_address object
cardholder_name string The cardholder name you prefilled when you created this payment.
View JSON Schema on GitHub

JSON Schema

PrefilledCardholderDetails.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/api-evangelist/gov-uk-pay/blob/main/json-schema/PrefilledCardholderDetails.json",
  "title": "PrefilledCardholderDetails",
  "type": "object",
  "description": "prefilled_cardholder_details",
  "properties": {
    "billing_address": {
      "$ref": "#/components/schemas/Address"
    },
    "cardholder_name": {
      "type": "string",
      "description": "The cardholder name you prefilled when you created this payment.",
      "example": "J. Bogs",
      "maxLength": 255,
      "minLength": 0
    }
  }
}