Update Service Confirmation Batches
Perform Update Service Confirmation Batches through MyForms.
myforms_update_service_confirmation_batcheswrite
Inputs
- Service Confirmation Batches
service_confirmation_batchesjsonrequiredRequired JSON value.
- Retry Delays Seconds
retry_delays_secondsjsonOptional JSON value.
- Not Found Max Document Loads
not_found_max_document_loadsnumberOptional numeric value.
Default:
2 - Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessresultsResultsupdated_countUpdated Countnot_found_countNot Found Countfailed_countFailed Counterror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"service_confirmation_batches"
],
"properties": {
"timeout_seconds": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"retry_delays_seconds": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"not_found_max_document_loads": {
"type": "number",
"default": 2,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"service_confirmation_batches": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"results": {},
"success": {},
"failed_count": {},
"error_message": {},
"updated_count": {},
"not_found_count": {}
},
"additionalProperties": true
}