GET api/admin/WorkFlowStage/GetWorkflowStageDD
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ApiResponseOfIEnumerableOfWorkFlowStageModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of WorkFlowStageModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Data": [
{
"StageID": 1,
"StageName": "sample string 2",
"StageOrder": 3
},
{
"StageID": 1,
"StageName": "sample string 2",
"StageOrder": 3
}
]
}
application/xml, text/xml
Sample:
<ApiResponseOfArrayOfWorkFlowStageModelj_Pf0XX_P4 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomApplicationModels">
<d2p1:WorkFlowStageModel>
<d2p1:StageID>1</d2p1:StageID>
<d2p1:StageName>sample string 2</d2p1:StageName>
<d2p1:StageOrder>3</d2p1:StageOrder>
</d2p1:WorkFlowStageModel>
<d2p1:WorkFlowStageModel>
<d2p1:StageID>1</d2p1:StageID>
<d2p1:StageName>sample string 2</d2p1:StageName>
<d2p1:StageOrder>3</d2p1:StageOrder>
</d2p1:WorkFlowStageModel>
</Data>
<Message>sample string 2</Message>
<Success>true</Success>
</ApiResponseOfArrayOfWorkFlowStageModelj_Pf0XX_P4>