A credit card for an invoice payment.
Property | Description |
---|---|
billingPostalCode |
The billing address postal code. |
cardNumber |
The card number (masked in responses). |
cardType read-only |
The type of credit card. |
cvvCode write-only |
The card CVV/CVC/CSC code. |
emailAddress |
The email address for the person making the payment. |
enableAutoPay |
Whether auto-pay should be turned on for this credit card on the given invoice. |
expirationMonth |
The card expiration month. |
expirationYear |
The card expiration year. |
nameOnCard |
The card-holder name. |
type |
The type of object represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "A credit card for an invoice payment.",
"properties": {
"billingPostalCode": {
"description": "The billing address postal code.",
"pattern": "^[A-Za-z0-9 -]{0,10}$",
"type": "string"
},
"cardNumber": {
"description": "The card number (masked in responses).",
"type": "string"
},
"cardType": {
"description": "The type of credit card.",
"enum": [
"amex",
"discover",
"mastercard",
"visa"
],
"readOnly": true,
"type": "string"
},
"cvvCode": {
"description": "The card CVV/CVC/CSC code.",
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"writeOnly": true
},
"emailAddress": {
"description": "The email address for the person making the payment.",
"format": "email",
"type": "string"
},
"enableAutoPay": {
"description": "Whether auto-pay should be turned on for this credit card on the\ngiven invoice.",
"type": "boolean"
},
"expirationMonth": {
"description": "The card expiration month.",
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"expirationYear": {
"description": "The card expiration year.",
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"nameOnCard": {
"description": "The card-holder name.",
"type": "string"
},
"type": {
"description": "The type of object represented.",
"enum": [
"credit-card"
],
"type": "string"
}
},
"required": [
"emailAddress",
"enableAutoPay"
],
"title": "Credit Card for Invoice",
"type": "object"
}