SumUp · Schema

Card Response

Details of the payment card.

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
last_4_digits string Last 4 digits of the payment card number.
type object
View JSON Schema on GitHub

JSON Schema

cardresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Card Response",
  "description": "Details of the payment card.",
  "type": "object",
  "properties": {
    "last_4_digits": {
      "description": "Last 4 digits of the payment card number.",
      "type": "string",
      "example": "3456",
      "maxLength": 4,
      "minLength": 4,
      "readOnly": true
    },
    "type": {
      "$ref": "#/components/schemas/CardType"
    }
  }
}