Check Submitted Authorizations
Perform Check Submitted Authorizations through Essette.
essette_check_existing_authorizationswriteessette
Inputs
- Essette Account Id
essette_account_idselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
Default:
"primary" - Plan Id
plan_idexpressionrequiredRequired literal value or workflow expression.
- Lookback Days
lookback_daysnumberOptional numeric value.
Default:
365
Outputs
successSuccesscountCountresultsResultshas_existingHas ExistingerrorErrorerror_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
}