Skip to documentation
Essette integration

Search Authorizations

Perform Search Authorizations through Essette.

View as Markdown
essette_search_authorizations
readessette

Inputs

  • essette_account_id
    selectrequireddynamic options
    Essette Account Id

    Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.

    Default: "primary"

  • date_from
    date
    Date From

    Optional date in YYYY-MM-DD format.

  • date_to
    date
    Date To

    Optional date in YYYY-MM-DD format.

  • auth_number
    expression
    Auth Number

    Optional literal value or workflow expression.

  • status
    select
    Status

    Optional 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
    number
    Top

    Optional numeric value.

    Default: 20

Outputs

  • successSuccess
  • countCount
  • resultsResults
  • errorError
  • error_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
}
View all Essette actions