POST api/Workflow/Save
Request Information
URI Parameters
None.
Body Parameters
WorkflowPostedFieldsRequestModel| Name | 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": "7e35d655-5ed9-49c0-97a0-dafe9cbd579b",
"WorkflowId": "c4f2437c-0885-4fde-a8d4-217027f38c6c",
"CurrentStepId": "9cb4833a-c528-4a7f-b60b-0595984b8392",
"UserId": "98770631-2ac1-4c59-8c45-7f7e10b8372a",
"CPDId": "21586e4a-60b2-4952-89b6-cb46b9c3a2ac",
"Created": "2026-02-05T07:08:52.0116023+11:00",
"LastModified": "2026-02-05T07:08:52.0126015+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": [
"a35c48cb-3827-4f6a-9d1a-08adab07f078",
"a0744229-f3f1-470b-b19d-5f2f47a26efc"
]
}
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>21586e4a-60b2-4952-89b6-cb46b9c3a2ac</CPDId>
<Created>2026-02-05T07:08:52.0116023+11:00</Created>
<CurrentStepId>9cb4833a-c528-4a7f-b60b-0595984b8392</CurrentStepId>
<Id>7e35d655-5ed9-49c0-97a0-dafe9cbd579b</Id>
<LastModified>2026-02-05T07:08:52.0126015+11:00</LastModified>
<PaymentGatewayTransactionRef>sample string 7</PaymentGatewayTransactionRef>
<PaymentSuccessful>true</PaymentSuccessful>
<PreviousStepIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>a35c48cb-3827-4f6a-9d1a-08adab07f078</d2p1:guid>
<d2p1:guid>a0744229-f3f1-470b-b19d-5f2f47a26efc</d2p1:guid>
</PreviousStepIds>
<UserId>98770631-2ac1-4c59-8c45-7f7e10b8372a</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>c4f2437c-0885-4fde-a8d4-217027f38c6c</WorkflowId>
<WorkflowName>sample string 6</WorkflowName>
</WorkflowPostedFieldsRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResponseModel| Name | 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>