Customer
Object
| Name | Type | Mandatory | Description |
|---|---|---|---|
| class | string | Y | The type of object which is being returned. In this case it will be customer. |
| string | N | The customer email address. | |
| language | string | N | The customer language according to (ISO-639-1). |
| firstname | string | N | The customer first name. |
| lastname | string | N | The customer last name. |
| billing_address | object | N | The customer’s billing address. See * billing address* object. |
Example
{
"class":"customer",
"email":"test@domain.com",
"language":"en",
"firstname":"John",
"lastname":"Doe",
"billing_address":
{
"class":"billing_address",
"address1":"3B, SysPay",
"address2":"Wied Ghomor Street",
"address3":null,
"city":"St. Julians",
"country":"MT",
"postal_code":"STJ2041"
}
}