POST api/Workflows/Search
Request Information
URI Parameters
None.
Body Parameters
WorkflowSearchRequestName | Description | Type | Additional information |
---|---|---|---|
Inputs | Collection of WorkflowInputDTO |
None. |
|
OrderBy | Collection of WorkflowOrderByDTO |
None. |
|
PageNumber | integer |
None. |
|
PageSize | integer |
None. |
|
DateColumn | string |
None. |
|
StartDate | date |
None. |
|
EndDate | date |
None. |
|
WorkflowId | integer |
None. |
|
ClientId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Inputs": [ { "DisplayName": "sample string 1", "Description": "sample string 2", "InternalName": "sample string 3", "Category": "sample string 4", "DataType": 0, "SelectOptions": [ {}, {} ], "DefaultValues": [ {}, {} ], "Values": [ {}, {} ], "Value": {} }, { "DisplayName": "sample string 1", "Description": "sample string 2", "InternalName": "sample string 3", "Category": "sample string 4", "DataType": 0, "SelectOptions": [ {}, {} ], "DefaultValues": [ {}, {} ], "Values": [ {}, {} ], "Value": {} } ], "OrderBy": [ { "OrderBy": "sample string 1", "OrderByDirection": "sample string 2" }, { "OrderBy": "sample string 1", "OrderByDirection": "sample string 2" } ], "PageNumber": 1, "PageSize": 2, "DateColumn": "sample string 3", "StartDate": "2025-06-02T20:24:46.5050124+00:00", "EndDate": "2025-06-02T20:24:46.5050124+00:00", "WorkflowId": 4, "ClientId": "sample string 5" }
text/xml
Sample:
<WorkflowSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RightRez.Web.Api.Models.Workflows"> <ClientId xmlns="http://schemas.datacontract.org/2004/07/RightRez.Autobook.PNRBookingEngine">sample string 5</ClientId> <WorkflowId>4</WorkflowId> <DateColumn>sample string 3</DateColumn> <EndDate>2025-06-02T20:24:46.5050124+00:00</EndDate> <Inputs> <WorkflowInputDTO> <Category>sample string 4</Category> <DataType>Unknown</DataType> <DefaultValues xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:anyType /> <d4p1:anyType /> </DefaultValues> <Description>sample string 2</Description> <DisplayName>sample string 1</DisplayName> <InternalName>sample string 3</InternalName> <SelectOptions xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:anyType /> <d4p1:anyType /> </SelectOptions> <Values xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:anyType /> <d4p1:anyType /> </Values> </WorkflowInputDTO> <WorkflowInputDTO> <Category>sample string 4</Category> <DataType>Unknown</DataType> <DefaultValues xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:anyType /> <d4p1:anyType /> </DefaultValues> <Description>sample string 2</Description> <DisplayName>sample string 1</DisplayName> <InternalName>sample string 3</InternalName> <SelectOptions xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:anyType /> <d4p1:anyType /> </SelectOptions> <Values xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:anyType /> <d4p1:anyType /> </Values> </WorkflowInputDTO> </Inputs> <OrderBy> <WorkflowOrderByDTO> <OrderBy>sample string 1</OrderBy> <OrderByDirection>sample string 2</OrderByDirection> </WorkflowOrderByDTO> <WorkflowOrderByDTO> <OrderBy>sample string 1</OrderBy> <OrderByDirection>sample string 2</OrderByDirection> </WorkflowOrderByDTO> </OrderBy> <PageNumber>1</PageNumber> <PageSize>2</PageSize> <StartDate>2025-06-02T20:24:46.5050124+00:00</StartDate> </WorkflowSearchRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
WorkflowSearchResponseName | Description | Type | Additional information |
---|---|---|---|
TotalCount | integer |
None. |
|
Rows | Collection of Collection of Object |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.