Search Authorizations
Perform Search Authorizations through Essette.
essette_search_authorizationsreadessette
Inputs
- Essette Account Id
essette_account_idselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
Default:
"primary" - Date From
date_fromdateOptional date in YYYY-MM-DD format.
- Date To
date_todateOptional date in YYYY-MM-DD format.
- Auth Number
auth_numberexpressionOptional literal value or workflow expression.
- Status
statusselectOptional selected identifier or value.
Options: All (""), Approved ("Approved"), In Process ("In Process"), Denied ("Denied"), Partial Approval ("Partial Approval"), Void ("Void"), MD Review ("MD Review"), Dismissal ("Dismissal"), Extended ("Extended")
- Top
topnumberOptional numeric value.
Default:
20
Outputs
successSuccesscountCountresultsResultserrorErrorerror_messageError Message
Output schema completeness: best_effort_declared
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
{
"type": "object",
"required": [
"essette_account_id"
],
"properties": {
"top": {
"type": "number",
"default": 20,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"status": {
"enum": [
"",
"Approved",
"In Process",
"Denied",
"Partial Approval",
"Void",
"MD Review",
"Dismissal",
"Extended"
],
"type": "string",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"date_to": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"date_from": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"auth_number": {
"description": "Optional 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"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"results": {},
"success": {},
"error_message": {}
},
"additionalProperties": true
}