# Update Authorization Fields

> Perform Update Authorization Fields through Essette.

Source: [https://genhealth.ai/docs/workflows/integrations/essette/essette_update_authorization](https://genhealth.ai/docs/workflows/integrations/essette/essette_update_authorization)

Integration: [Essette](https://genhealth.ai/docs/workflows/integrations/essette.md)

- Handler: `essette_update_authorization`

- Connection type: `essette`

## Inputs

- `essette_account_id` — Essette Account Id (select, required, dynamic options)
  Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
  Default: `"primary"`
- `auth_id` — Auth Id (expression, required)
  Required literal value or workflow expression.
- `priority_id` — Priority Id (select, dynamic options)
  Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- `place_of_service_id` — Place Of Service Id (select, dynamic options)
  Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- `healthcare_service_type_id` — Healthcare Service Type Id (expression)
  Optional literal value or workflow expression.
- `extra_fields` — Extra Fields (json)
  Optional JSON value.

## Outputs

- `success` — Success
- `auth_id` — Auth Id
- `updated_fields` — Updated Fields
- `error` — Error
- `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",
  "required": [
    "essette_account_id",
    "auth_id"
  ],
  "properties": {
    "auth_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "priority_id": {
      "type": "string",
      "description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "extra_fields": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "essette_account_id": {
      "type": "string",
      "default": "primary",
      "description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "place_of_service_id": {
      "type": "string",
      "description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "healthcare_service_type_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "auth_id": {},
    "success": {},
    "error_message": {},
    "updated_fields": {}
  },
  "additionalProperties": true
}
```
