# Delete Inbox Message

> Perform Delete Inbox Message through MyForms.

Source: [https://genhealth.ai/docs/workflows/integrations/my-forms/myforms_delete_inbox_message](https://genhealth.ai/docs/workflows/integrations/my-forms/myforms_delete_inbox_message)

Integration: [MyForms](https://genhealth.ai/docs/workflows/integrations/my-forms.md)

- Handler: `myforms_delete_inbox_message`

## Inputs

- `delete_request` — Delete Request (json)
  Optional JSON value.
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`

## Outputs

- `success` — Success
- `deleted` — Deleted
- `skipped` — Skipped
- `error_message` — Error 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "deleted": {},
    "skipped": {},
    "success": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
