CheckoutCustomerDetailsDto
The billing details of the customer the checkout belongs to.
billing_addressAddressDtoOptionalRepresents a physical or billing address
citystringOptional
The city of the address
countrystringOptional
The country of the address
line_1stringOptional
The first line of the street address
line_2stringOptional
The second line of the street address, if any (apartment, suite, etc.)
postal_codestringOptional
The postal code or zip code of the address
statestringOptional
The state or province of the address
billing_emailstringOptional
The email address the checkout is billed to.
billing_namestringOptional
The name the checkout is billed to.
billing_tax_idstringOptional
The tax identifier of the customer, such as a VAT number.
Example
{
"billing_name": "string",
"billing_email": "string",
"billing_address": {
"country": "string",
"state": "string",
"city": "string",
"postal_code": "string",
"line_1": "string",
"line_2": "string"
},
"billing_tax_id": "string"
}