The following macros are not currently supported in the header:
- style
Create Address
UNDER DEVELOPMENT
The following endpoint can be used to creates new address.
POST [/:object_type/:object_id]/addresses
Where object_type and object_id
 describe the object you wish to create the address for. We currently support the following object types:
Parameters
Table of allowed parameters. Underlined parameters are mandatory.
against_type | string | The type of object the address is against. e.g, company or contact. This is not required if you use the /:object_type/:object_id/addresses endpoint. |
---|---|---|
against_id | unsigned int | The id of the object the address is against. This is not required if you use the /:object_type/:object_id/addresses endpoint. |
overwirte | bool, 1 or 0 | If the address to be created exists already, whether overwrite it. |
state_id | unsigned int | Must point to a valid state. If you do not know the state id, please use the state parameter. |
state | string | The name of the state or province |
country_id | unsigned int | Must point to a valid country. If you do not know the country id, please use the country parameter. |
country | string | The name of the country. |
title | string | Â |
street1 | string | Â |
street2 | string | Â |
city | string | Â |
zipcode/postcode | string | Â |
latitude | string | Â |
longitude | string | Â |
postal | string, 'yes' or 'no' | This indicates whether this address is a postal address |
physical | string, 'yes' or 'no' | This indicates whether this address is a physical address |
Handling the response
Please see the GET address for controlling the response.