POST api/Workflow/Save
Request Information
URI Parameters
None.
Body Parameters
WorkflowPostedFieldsRequestModelName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
WorkflowId | globally unique identifier |
None. |
|
CurrentStepId | globally unique identifier |
None. |
|
UserId | globally unique identifier |
None. |
|
CPDId | globally unique identifier |
None. |
|
Created | date |
None. |
|
LastModified | date |
None. |
|
WorkflowName | string |
None. |
|
Values | Collection of WorkflowPostedField |
None. |
|
PaymentSuccessful | boolean |
None. |
|
PaymentGatewayTransactionRef | string |
None. |
|
PreviousStepIds | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": "a2dec83b-3528-4970-94b5-b4938d784619", "WorkflowId": "42f4a3e9-4a6e-4751-a0d2-e1d1e7ed1b1b", "CurrentStepId": "bb52f6dc-2bba-4a97-94e9-c70401f8136e", "UserId": "724fe2a1-822a-48de-90c6-2d4c33b726ed", "CPDId": "9b4ec74e-d7ae-48ce-a052-9a6367ff2d3b", "Created": "2025-04-04T12:57:12.2116613+11:00", "LastModified": "2025-04-04T12:57:12.2116613+11:00", "WorkflowName": "sample string 6", "Values": [ { "Name": "sample string 1", "Value": "sample string 2", "Mapping": "sample string 3", "FieldType": "sample string 4", "Text": "sample string 5", "AdditionalRef": [ { "Key": "sample string 1", "Value": "sample string 2" }, { "Key": "sample string 1", "Value": "sample string 2" } ] }, { "Name": "sample string 1", "Value": "sample string 2", "Mapping": "sample string 3", "FieldType": "sample string 4", "Text": "sample string 5", "AdditionalRef": [ { "Key": "sample string 1", "Value": "sample string 2" }, { "Key": "sample string 1", "Value": "sample string 2" } ] } ], "PaymentSuccessful": true, "PaymentGatewayTransactionRef": "sample string 7", "PreviousStepIds": [ "94d2ebe2-1d53-4235-95c3-d0ad18d6b872", "545587e5-6799-4907-a73b-133a82b30fe1" ] }
application/xml, text/xml
Sample:
<WorkflowPostedFieldsRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Request"> <CPDId>9b4ec74e-d7ae-48ce-a052-9a6367ff2d3b</CPDId> <Created>2025-04-04T12:57:12.2116613+11:00</Created> <CurrentStepId>bb52f6dc-2bba-4a97-94e9-c70401f8136e</CurrentStepId> <Id>a2dec83b-3528-4970-94b5-b4938d784619</Id> <LastModified>2025-04-04T12:57:12.2116613+11:00</LastModified> <PaymentGatewayTransactionRef>sample string 7</PaymentGatewayTransactionRef> <PaymentSuccessful>true</PaymentSuccessful> <PreviousStepIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>94d2ebe2-1d53-4235-95c3-d0ad18d6b872</d2p1:guid> <d2p1:guid>545587e5-6799-4907-a73b-133a82b30fe1</d2p1:guid> </PreviousStepIds> <UserId>724fe2a1-822a-48de-90c6-2d4c33b726ed</UserId> <Values> <WorkflowPostedField> <AdditionalRef> <WorkflowAdditionalRef> <Key>sample string 1</Key> <Value>sample string 2</Value> </WorkflowAdditionalRef> <WorkflowAdditionalRef> <Key>sample string 1</Key> <Value>sample string 2</Value> </WorkflowAdditionalRef> </AdditionalRef> <FieldType>sample string 4</FieldType> <Mapping>sample string 3</Mapping> <Name>sample string 1</Name> <Text>sample string 5</Text> <Value>sample string 2</Value> </WorkflowPostedField> <WorkflowPostedField> <AdditionalRef> <WorkflowAdditionalRef> <Key>sample string 1</Key> <Value>sample string 2</Value> </WorkflowAdditionalRef> <WorkflowAdditionalRef> <Key>sample string 1</Key> <Value>sample string 2</Value> </WorkflowAdditionalRef> </AdditionalRef> <FieldType>sample string 4</FieldType> <Mapping>sample string 3</Mapping> <Name>sample string 1</Name> <Text>sample string 5</Text> <Value>sample string 2</Value> </WorkflowPostedField> </Values> <WorkflowId>42f4a3e9-4a6e-4751-a0d2-e1d1e7ed1b1b</WorkflowId> <WorkflowName>sample string 6</WorkflowName> </WorkflowPostedFieldsRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResponseModelName | Description | Type | Additional information |
---|---|---|---|
Result | ResponseResult |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": { "Success": true, "Message": "sample string 2", "Errors": [ { "Message": "sample string 1" }, { "Message": "sample string 1" } ] } }
application/xml, text/xml
Sample:
<BaseResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response"> <Result> <Errors> <ErrorMessage> <Message>sample string 1</Message> </ErrorMessage> <ErrorMessage> <Message>sample string 1</Message> </ErrorMessage> </Errors> <Message>sample string 2</Message> <Success>true</Success> </Result> </BaseResponseModel>