POST api/BackOffice/HandleBasicWorkFlowCreation
Request Information
URI Parameters
None.
Body Parameters
WorkFlowRequestName | Description | Type | Additional information |
---|---|---|---|
Details | BasicWorkFlowDetails |
Required |
|
UserName |
The provided user name. |
string |
Required |
Salt |
A random number(at least 9 digits) |
integer |
Required |
Digest |
A digest of the user credentials and the request |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "Details": { "ReservationIdentifier": "sample string 1", "AutoCompleteStatus": 0, "AgentClockId": 2, "AccountCode": "sample string 3", "TripNumber": "sample string 4", "DataSource": "sample string 5", "AxCompany": "sample string 6" }, "UserName": "sample string 1", "Salt": 2, "Digest": "sample string 3" }
application/xml, text/xml
Sample:
<WorkFlowRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" UserName="sample string 1" Salt="2" Digest="sample string 3"> <Details> <ReservationIdentifier>sample string 1</ReservationIdentifier> <AutoCompleteStatus>None</AutoCompleteStatus> <AgentClockId>2</AgentClockId> <AccountCode>sample string 3</AccountCode> <TripNumber>sample string 4</TripNumber> <DataSource>sample string 5</DataSource> <AxCompany>sample string 6</AxCompany> </Details> </WorkFlowRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GenericWorkFlowResponseName | Description | Type | Additional information |
---|---|---|---|
Result |
The result of the operation |
WebOperationResult |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": { "Success": true, "Message": "sample string 2", "Extra1": "sample string 3", "Extra2": "sample string 4", "Extra3": "sample string 5" } }
application/xml, text/xml
Sample:
<GenericWorkFlowResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Result> <Success>true</Success> <Message>sample string 2</Message> <Extra1>sample string 3</Extra1> <Extra2>sample string 4</Extra2> <Extra3>sample string 5</Extra3> </Result> </GenericWorkFlowResponse>