Counterpart addresses

Overview

Counterparts that represent an entity’s vendors or suppliers must have their address information associated with them. Monite allows you to create multiple addresses for a counterpart.

Add an address to a counterpart

To add an address to a counterpart, call POST /counterparts/{counterpart_id}/addresses:

1curl -X POST 'https://api.sandbox.monite.com/v1/counterparts/{counterpart_id}/addresses' \
2 -H 'X-Monite-Version: 2024-01-31' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN' \
5 -H 'Content-Type: application/json' \
6 -d '{
7 "country": "DE",
8 "city": "Berlin",
9 "postal_code": "10115",
10 "state": "BE",
11 "line1": "Flughafenstrasse 52",
12 "line2": "Additional information"
13 }'

The successful response returns the information about the address including the ID:

1{
2 "country": "DE",
3 "city": "Berlin",
4 "postal_code": "10115",
5 "state": "BE",
6 "line1": "Flughafenstrasse 52",
7 "line2": "Addition information",
8 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
9 "counterpart_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
10}

After creating a new counterpart address, Monite stores all available counterpart addresses in array. You can also update the counterpart’s default billing and shipping addresses using the counterpart address ID issued after creating a counterpart. For more information, see Edit a counterpart.

Counterparts can use the same counterpart address for the default_shipping_address_id and default_billing_address_id fields.

List all addresses

To get information about all addresses associated with the specified counterpart, call
GET /counterparts/{counterpart_id}/addresses as shown:

1curl -X GET 'https://api.sandbox.monite.com/v1/counterparts/{counterpart_id}/addresses' \
2 -H 'X-Monite-Version: 2024-01-31' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN' \

The successful response returns an array of all counterpart addresses.

Retrieve an address

To get information about a specific address associated with the specified counterpart, call
GET /counterparts/{counterpart_id}/addresses/{address_id}.

Edit an address

To edit an existing address of the specified counterpart, call
PATCH /counterparts/{counterpart_id}/addresses/{address_id}.

Delete an address

Only non-default addresses can be deleted. To delete an existing address from the list of addresses associated with the specified counterpart, call
DELETE /counterparts/{counterpart_id}/addresses/{addresses_id}.

The default billing and shipping addresses of a counterpart cannot be deleted. Attempts to delete these addresses will return an error.