Skip to main content
Python
import requests

url = 'https://api.simplex.sh/pa_check_status'
headers = {
    'X-API-Key': 'your_api_key_here'
}
params = {
    'form_id': '8a1c42e7-9b3d-4f12-b6a5-3e7f4d2c1a9b'
}

response = requests.get(url, headers=headers, params=params)
result = response.json()
print(f"Status: {result['status']}")
{
  "succeeded": true,
  "form_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "SENT_TO_PLAN",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-Key
string
header
required

Simplex API Key

Query Parameters

form_id
string<uuid>
required

UUID of the fax form, returned by Fill Prior Authorization.

Response

200 - application/json
succeeded
boolean
required

Whether the status lookup was successful.

form_id
string<uuid>
required

UUID of the fax form (echoed from the request).

status
enum<string>
required

Current status of the prior authorization.

Available options:
SENT_TO_PLAN,
APPROVED,
DENIED,
ADDITIONAL_QUESTIONS,
APPEAL
updated_at
string<date-time>

When the status was last updated.