# Resolve Delivery State

> Perform Resolve Delivery State through MyForms.

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

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

- Handler: `intake_resolve_delivery_state`

## Inputs

- `context_payload` — Context Payload (json)
  Optional JSON value.
- `account_key` — Account Key (text)
  Optional text value.
- `blocker_payload` — Blocker Payload (json)
  Optional JSON value.
- `document_payload` — Document Payload (json)
  Optional JSON value.
- `note_payload` — Note Payload (json)
  Optional JSON value.
- `classification_payload` — Classification Payload (json)
  Optional JSON value.

## Outputs

No named outputs are declared for this action.

Output schema completeness: `unknown`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "note_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "blocker_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "context_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "document_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "classification_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
```
