The Auth Status API provides real-time updates on the status of a Prior Authorization (PA) request. It allows users to track the progress of a PA submission, view its approval or denial status, and access a detailed history of the authorization process, including timestamps and status changes.
Endpoint
GET /api/v1/auth/status/{authorization_id}Input Parameters
- Payer Portal Authorization ID: The unique ID assigned to the authorization request when it is submitted to the payer’s portal.
API Response
The response provides the current status of the authorization request (e.g., approved, denied), along with a link to the approval/denial letter and the history of status updates for the request.
Example Request
GET /api/v1/auth/status/PA1234567
Example Response
1
2{
3 "status": "Approved",
4 "approval_letter_url": "https://example.com/letter.pdf",
5 "history": [
6 {"status": "Submitted", "timestamp": "2025-11-10T10:00:00Z"},
7 {"status": "Approved", "timestamp": "2025-11-10T14:30:00Z"}
8 ]
9}
10
11Response Codes
