POST api/GetDynamicURL
Request Information
URI Parameters
None.
Body Parameters
WebServiceTypeFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| FleetId | integer |
None. |
|
| WebServiceTypeId | integer |
None. |
|
| WebServiceTypeName | string |
None. |
|
| UserToken | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FleetId": 1,
"WebServiceTypeId": 2,
"WebServiceTypeName": "sample string 3",
"UserToken": "sample string 4"
}
application/xml, text/xml
Sample:
<WebServiceTypeFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudInteractionBridge.DataClasses"> <FleetId>1</FleetId> <UserToken>sample string 4</UserToken> <WebServiceTypeId>2</WebServiceTypeId> <WebServiceTypeName>sample string 3</WebServiceTypeName> </WebServiceTypeFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of URLInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| FleetId | integer |
None. |
|
| WebServiceId | integer |
None. |
|
| WebServiceTypeId | integer |
None. |
|
| UserToken | string |
None. |
|
| WebServiceName | string |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| URL | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FleetId": 1,
"WebServiceId": 2,
"WebServiceTypeId": 3,
"UserToken": "sample string 4",
"WebServiceName": "sample string 5",
"Username": "sample string 6",
"Password": "sample string 7",
"URL": "sample string 8"
},
{
"FleetId": 1,
"WebServiceId": 2,
"WebServiceTypeId": 3,
"UserToken": "sample string 4",
"WebServiceName": "sample string 5",
"Username": "sample string 6",
"Password": "sample string 7",
"URL": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfURLInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudInteractionBridge.DataClasses">
<URLInfo>
<FleetId>1</FleetId>
<Password>sample string 7</Password>
<URL>sample string 8</URL>
<UserToken>sample string 4</UserToken>
<Username>sample string 6</Username>
<WebServiceId>2</WebServiceId>
<WebServiceName>sample string 5</WebServiceName>
<WebServiceTypeId>3</WebServiceTypeId>
</URLInfo>
<URLInfo>
<FleetId>1</FleetId>
<Password>sample string 7</Password>
<URL>sample string 8</URL>
<UserToken>sample string 4</UserToken>
<Username>sample string 6</Username>
<WebServiceId>2</WebServiceId>
<WebServiceName>sample string 5</WebServiceName>
<WebServiceTypeId>3</WebServiceTypeId>
</URLInfo>
</ArrayOfURLInfo>