GET api/V3/Distributor/Outlets/{DistributorERPId}
Returns all outlets attached to the distributor
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DistributorERPId |
Guid or ERP id of the distributor |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
All outlets attached to the distributor
Collection of V3.DistributorOutletsName | Description | Type | Additional information |
---|---|---|---|
OutletName |
Name of the Outlet |
string |
None. |
OutletErpId |
SAP or ERP id of the Outlet/Customer |
string |
None. |
OutletGUID |
Guid of an Outlet |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "OutletName": "sample string 1", "OutletErpId": "sample string 2", "OutletGUID": "sample string 3" }, { "OutletName": "sample string 1", "OutletErpId": "sample string 2", "OutletGUID": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfDistributorOutlets xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.V3.Models"> <DistributorOutlets> <OutletErpId>sample string 2</OutletErpId> <OutletGUID>sample string 3</OutletGUID> <OutletName>sample string 1</OutletName> </DistributorOutlets> <DistributorOutlets> <OutletErpId>sample string 2</OutletErpId> <OutletGUID>sample string 3</OutletGUID> <OutletName>sample string 1</OutletName> </DistributorOutlets> </ArrayOfDistributorOutlets>