Update Authorization Fields
Perform Update Authorization Fields through Essette.
essette_update_authorizationwriteessette
Inputs
- Essette Account Id
essette_account_idselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
Default:
"primary" - Auth Id
auth_idexpressionrequiredRequired literal value or workflow expression.
- Priority Id
priority_idselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Place Of Service Id
place_of_service_idselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Healthcare Service Type Id
healthcare_service_type_idexpressionOptional literal value or workflow expression.
- Extra Fields
extra_fieldsjsonOptional JSON value.
Outputs
successSuccessauth_idAuth Idupdated_fieldsUpdated FieldserrorErrorerror_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",
"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
{
"type": "object",
"properties": {
"error": {},
"auth_id": {},
"success": {},
"error_message": {},
"updated_fields": {}
},
"additionalProperties": true
}