GET api/V3/Distributor/Beats/{DistributorERPId}
Lists Beats of a particular 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
Beats of a particular distributor
Collection of V3.Beat| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name of the beat |
string |
None. |
| DistributorERPId |
Distributor ERPId Attached to the Beat |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"DistributorERPId": "sample string 2"
},
{
"Name": "sample string 1",
"DistributorERPId": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfBeat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.V3.Models">
<Beat>
<DistributorERPId>sample string 2</DistributorERPId>
<Name>sample string 1</Name>
</Beat>
<Beat>
<DistributorERPId>sample string 2</DistributorERPId>
<Name>sample string 1</Name>
</Beat>
</ArrayOfBeat>