GET api/stagemaps?stageID={stageID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| stageID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StageMapData| Name | Description | Type | Additional information |
|---|---|---|---|
| StageID | integer |
None. |
|
| Name | string |
None. |
|
| ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StageID": 1,
"Name": "sample string 1",
"ID": 1
},
{
"StageID": 1,
"Name": "sample string 1",
"ID": 1
}
]
text/xml
Sample:
<ArrayOfStageMapData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data">
<StageMapData>
<ID>1</ID>
<Name>sample string 1</Name>
<StageID>1</StageID>
</StageMapData>
<StageMapData>
<ID>1</ID>
<Name>sample string 1</Name>
<StageID>1</StageID>
</StageMapData>
</ArrayOfStageMapData>