Addresses
Use this endpoint to obtain details on Adaptix's company addresses.
Get Address
HTTP Request
GET /addresses/ID
Response
Expected Response Code: 200
See JSON code example.
Address Properties
Name | Type | Description |
---|---|---|
id | int | ID of the address |
company_name | string | The company name |
address | string | address of the company |
address2 | string | address line 2 of the company |
city | string | Company city |
state | string | Company state |
zip | string | Company zip |
country | string | Company country |
is_default | boolean | Whether the address is the default address |
List Company Address
HTTP Request
GET /addresses
Response
Expected Response Code: 200
See JSON code example.
Address Properties
Name | Type | Description |
---|---|---|
id | int | ID of the address |
company_name | string | The company name |
address | string | address of the company |
address2 | string | address line 2 of the company |
city | string | Company city |
state | string | Company state |
zip | string | Company zip |
country | string | Company country |
is_default | boolean | Whether the address is the default address |
Create Address
HTTP Request
POST /addresses/new
Post Parameters
Name | Type | Description |
---|---|---|
company_name | string | The company name |
address | string | address of the company |
address2 | string | address line 2 of the company |
city | string | Company city |
state | string | Company state |
zip | string | Company zip |
country | string | Company country |
is_default | boolean | Whether the address is the default address |
Response
Expected Response Code: 201
Properties
Same as Get Address.
Edit Address
PATCH fails if the address with the given ID does not exist and updates the address field values with the values form the request.
HTTP Request
To edit an address and return a 404 if the address is not found:
PATCH /addresses/ID/edit
Post Parameters
Name | Type | Description |
---|---|---|
company_name | string | The company name |
address | string | address of the company |
address2 | string | address line 2 of the company |
city | string | Company city |
state | string | Company state |
zip | string | Company zip |
country | string | Company country |
is_default | boolean | Whether the address is the default address |
Response
If PATCH
, the expected response code is 200
.
Properties
Same as Get Address.
Delete Address
Delete an address.HTTP Request
DELETE /addresses/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Address.