GET api/admin/WorkflowAction/WorkflowActionPaged?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
|
| SearchTerm | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseOfWorkflowActionListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | WorkflowActionListModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Data": {
"WorkflowActions": [
{
"ActionID": 1,
"ActionName": "sample string 1",
"ActionCode": "sample string 2"
},
{
"ActionID": 1,
"ActionName": "sample string 1",
"ActionCode": "sample string 2"
}
],
"TotalRecords": 1
}
}
application/xml, text/xml
Sample:
<ApiResponseOfWorkflowActionListModelu2S72hLb 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.CustomMasterModels">
<d2p1:TotalRecords>1</d2p1:TotalRecords>
<d2p1:WorkflowActions>
<d2p1:WorkflowActionPagedDTO>
<d2p1:ActionCode>sample string 2</d2p1:ActionCode>
<d2p1:ActionID>1</d2p1:ActionID>
<d2p1:ActionName>sample string 1</d2p1:ActionName>
</d2p1:WorkflowActionPagedDTO>
<d2p1:WorkflowActionPagedDTO>
<d2p1:ActionCode>sample string 2</d2p1:ActionCode>
<d2p1:ActionID>1</d2p1:ActionID>
<d2p1:ActionName>sample string 1</d2p1:ActionName>
</d2p1:WorkflowActionPagedDTO>
</d2p1:WorkflowActions>
</Data>
<Message>sample string 2</Message>
<Success>true</Success>
</ApiResponseOfWorkflowActionListModelu2S72hLb>