GET DestinationName?CompanyId={CompanyId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Destination| Name | Description | Type | Additional information |
|---|---|---|---|
| DestName | string |
None. |
|
| DestURL | string |
None. |
|
| ContinentName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DestName": "sample string 1",
"DestURL": "sample string 2",
"ContinentName": "sample string 3"
},
{
"DestName": "sample string 1",
"DestURL": "sample string 2",
"ContinentName": "sample string 3"
}
]
text/xml
Sample:
<ArrayOfDestination xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DealManagement.Models">
<Destination>
<ContinentName>sample string 3</ContinentName>
<DestName>sample string 1</DestName>
<DestURL>sample string 2</DestURL>
</Destination>
<Destination>
<ContinentName>sample string 3</ContinentName>
<DestName>sample string 1</DestName>
<DestURL>sample string 2</DestURL>
</Destination>
</ArrayOfDestination>