SaveWorkflowStepClientDataRequest
Request to save client data values from an UpdateClientData workflow step.
Properties
| Name | Type | Description |
|---|---|---|
| values | array of WorkflowStepClientDataValueDto | The field values to save to the client record. |
The field values to save to the client record. | ||
| markComplete | boolean | Whether to mark the step as Completed after saving. |
Whether to mark the step as Completed after saving. | ||
JSON Example
{
"values": [
{
"clientField": "...",
"customFieldDefinitionCode": "...",
"value": "..."
}
],
"markComplete": false
}