Delete Inbox Message
Perform Delete Inbox Message through MyForms.
myforms_delete_inbox_messagewrite
Inputs
- Delete Request
delete_requestjsonOptional JSON value.
- Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
180
Outputs
successSuccessdeletedDeletedskippedSkippederror_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",
"properties": {
"delete_request": {
"description": "Optional 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": {
"deleted": {},
"skipped": {},
"success": {},
"error_message": {}
},
"additionalProperties": true
}