Get PA Request Details
GET/v1/pa-requests/:id
Fetch detailed information about a specific pre-authorization request
Request
Path Parameters
The ID of the PA request to retrieve
Query Parameters
When true, includes tariff items, diagnoses, and care details
When true, includes HMO, enrollee, items, and diagnoses details
When true, returns activities data for export
When true, initializes PA request chat
When true, includes auto-vet recommendation data and additional relations
Responses
- 200
- 403
- 404
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
- Array [
- ]
Prescription referral code (PR-XXXXX) if this PA is linked to an encounter.
provider object
hmo object
enrollee object
hmo_plan object
diagnoses object[]
cares object[]
benefit objectnullable
Summary of the matched plan benefit for the returned care or treatment item.
The unique ID of the matched plan benefit.
Human-readable label for the matched benefit.
Possible values: [care, care_group, care_type, diagnosis]
Indicates how the benefit was matched.
care_group objectnullable
Care group metadata when the matched benefit comes from a care-group rule.
items object[]
tariff_item object
benefit objectnullable
Summary of the matched plan benefit for the returned care or treatment item.
The unique ID of the matched plan benefit.
Human-readable label for the matched benefit.
Possible values: [care, care_group, care_type, diagnosis]
Indicates how the benefit was matched.
care_group objectnullable
Care group metadata when the matched benefit comes from a care-group rule.
Only visible when for_auto_vet is true
{
"id": 0,
"code": "string",
"pr_code": "string",
"pa_code_with_submitted_claims": true,
"provider": {
"id": 0,
"name": "string"
},
"hmo": {
"id": 0,
"name": "string"
},
"enrollee": {
"id": 0,
"firstname": "string",
"lastname": "string",
"insurance_no": "string",
"hmo_plan": {
"id": 0,
"name": "string"
}
},
"diagnoses": [
{
"id": 0,
"icd_code": "string",
"name": "string"
}
],
"cares": [
{
"id": 0,
"name": "string",
"benefit": {
"id": 0,
"label": "string",
"source_type": "care",
"care_group": {
"id": 0,
"name": "string"
}
}
}
],
"items": [
{
"tariff_item": {
"id": 0,
"amount": 0,
"desc": "string"
},
"benefit": {
"id": 0,
"label": "string",
"source_type": "care",
"care_group": {
"id": 0,
"name": "string"
}
}
}
],
"auto_vet_recommendation": {},
"activities": [
{}
]
}
Forbidden - User does not have permission to view this PA request
PA Request not found