Push Documents to BDM
Perform Push Documents to BDM through MyForms.
myforms_push_documents_to_bdmwrite
Inputs
- Workflow Id
workflow_idtextrequiredRequired text value.
- Document Ids
document_idsjsonrequiredRequired JSON value.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccesspushedPusheddocument_idsDocument Idserror_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": [
"workflow_id",
"document_ids"
],
"properties": {
"workflow_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"document_ids": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"timeout_seconds": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"pushed": {},
"success": {},
"document_ids": {},
"error_message": {}
},
"additionalProperties": true
}