Skip to documentation
Essette integration

Check Submitted Authorizations

Perform Check Submitted Authorizations through Essette.

View as Markdown
essette_check_existing_authorizations
writeessette

Inputs

  • essette_account_id
    selectrequireddynamic options
    Essette Account Id

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

    Default: "primary"

  • plan_id
    expressionrequired
    Plan Id

    Required literal value or workflow expression.

  • lookback_days
    number
    Lookback Days

    Optional numeric value.

    Default: 365

Outputs

  • successSuccess
  • countCount
  • resultsResults
  • has_existingHas Existing
  • errorError
  • error_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",
    "plan_id"
  ],
  "properties": {
    "plan_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "lookback_days": {
      "type": "number",
      "default": 365,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "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": {},
    "has_existing": {},
    "error_message": {}
  },
  "additionalProperties": true
}
View all Essette actions