GET config/getroutes/{Lang}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Lang | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RouteModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
None. |
|
| Name | string |
None. |
|
| Path | string |
None. |
|
| Component | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Type": "sample string 1",
"Name": "sample string 2",
"Path": "sample string 3",
"Component": "sample string 4"
},
{
"Type": "sample string 1",
"Name": "sample string 2",
"Path": "sample string 3",
"Component": "sample string 4"
}
]
text/xml
Sample:
<ArrayOfRouteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WscPrinter.Api.Models.Core">
<RouteModel>
<Component>sample string 4</Component>
<Name>sample string 2</Name>
<Path>sample string 3</Path>
<Type>sample string 1</Type>
</RouteModel>
<RouteModel>
<Component>sample string 4</Component>
<Name>sample string 2</Name>
<Path>sample string 3</Path>
<Type>sample string 1</Type>
</RouteModel>
</ArrayOfRouteModel>