API Docs / Schemas / SaveWorkflowStepClientDataRequest

SaveWorkflowStepClientDataRequest

Request to save client data values from an UpdateClientData workflow step.

Properties

Name Type Description
valuesarray of WorkflowStepClientDataValueDto

The field values to save to the client record.

The field values to save to the client record.

markCompleteboolean

Whether to mark the step as Completed after saving.
When true, required field validation is enforced.

Whether to mark the step as Completed after saving.
When true, required field validation is enforced.

JSON Example

{
  "values": [
    {
      "clientField": "...",
      "customFieldDefinitionCode": "...",
      "value": "..."
    }
  ],
  "markComplete": false
}

Used By Operations