Praxis Wiki logo

Objects Billing address


The Billing address representation in our entries.

STRUCTURE

✓ - required value
? - optional, value or null
✕ - always appears as null

Variable Type Description
address varchar(100) Customer's address
city varchar(100) City of the customer
state varchar(3) State/Province where the customer resides. Required for countries: US, CA and AU. 2 or 3 characters ISO format.
zip varchar(12) Postal Code of the customer. Required for US and CA. Can provide values for other countries. Limited to 12 alphanumeric characters only.
country varchar(2) ? ISO 3166-1 alpha-2 country code (US, MT, IT, GB, DE etc.)

EXAMPLE

{
        "address": "342 Patience Road",
        "city": "City",
        "state": "CA",
        "zip": "45332",
        "country": "US"
}