# Set Servicing Provider

> Perform Set Servicing Provider through Essette.

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

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

- Handler: `essette_set_servicing_provider`

- 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.
- `search` — Search (expression)
  Optional literal value or workflow expression.
- `provider_location_id` — Provider Location Id (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `auth_id` — Auth Id
- `provider_location_id` — Provider Location Id
- `provider_description` — Provider Description
- `count` — Count
- `results` — Results
- `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": {
    "search": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "auth_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "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"
    },
    "provider_location_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "auth_id": {},
    "results": {},
    "success": {},
    "error_message": {},
    "provider_description": {},
    "provider_location_id": {}
  },
  "additionalProperties": true
}
```
