Get Addresses
GET REST API request that returns a list of warehouse addresses of supplier. The response example is shown below.
Request
HTTP Method | GET | |||||
URL | Stage | https://api.stage.ananastest.com/ws-inventory/api/v1/supplier-integration/addresses | ||||
Production | https://api.ananas.rs/ws-inventory/api/v1/supplier-integration/addresses | |||||
HTTP Headers |
|
Response
Response is a collection of supplier's addresses.
Field Name | Type | Description |
id | Integer | Warehouse address id |
warehouseName | String | Name of warehouse |
Example of response:
JSON:
[
{
"id": 4755,
"warehouseName": "Avtera Primary Pickup"
},
{
"id": 4254,
"warehouseName": "Avtera Secondary pickup"
}
]