Diagnosis
Diagnoses are codes that describe the condition, problem, or condition for which a claim is being submitted.
The diagnosis model
Properties
- Name
id
- Type
- string
- Description
Unique identifier for the diagnosis.
- Name
diagnosis
- Type
- string
- Description
ICD-10 code of diagnosis.
- Name
active
- Type
- boolean
- Description
Whether diagnosis is still active.
- Name
onset_date
- Type
- date
- Description
Start date of diagnosis (in ISO 8601 format).
- Name
end_date
- Type
- date
- Description
Only applies if .active is false. End date of diagnosis (in ISO 8601 format).
Response
{
"id": "2UxtAULYUrX7GVsTKePy",
"diagnosis": "E10.0",
"active": true,
"onset_date": "2022-05-28",
"end_date": "2022-05-28"
}
POST/v2/insurance_claims/:insurance_claim_id/diagnoses
Create a diagnosis
Creates a new diagnosis.
Required attributes
- Name
diagnosis
- Type
- string
- Description
ICD-10 code of diagnosis.
- Name
active
- Type
- boolean
- Description
Whether diagnosis is still active.
- Name
onset_date
- Type
- date
- Description
Start date of diagnosis (in ISO 8601 format).
- Name
end_date
- Type
- date
- Description
Only applies if .active is false. End date of diagnosis (in ISO 8601 format).
Optional attributes
Response
{
"id": "2UxtAULYUrX7GVsTKePy",
"diagnosis": "E10.0",
"active": true,
"onset_date": "2022-05-28",
"end_date": "2022-05-28"
}
POST/v2/insurance_claims/:insurance_claim_id/diagnoses/:id
Update a diagnosis
Required attributes
Optional attributes
- Name
diagnosis
- Type
- string
- Description
ICD-10 code of diagnosis.
- Name
active
- Type
- boolean
- Description
Whether diagnosis is still active.
- Name
onset_date
- Type
- date
- Description
Start date of diagnosis (in ISO 8601 format).
- Name
end_date
- Type
- date
- Description
Only applies if .active is false. End date of diagnosis (in ISO 8601 format).
Response
{
"id": "2UxtAULYUrX7GVsTKePy",
"diagnosis": "E10.0",
"active": true,
"onset_date": "2022-05-28",
"end_date": "2022-05-28"
}
DELETE/v2/insurance_claims/:insurance_claim_id/diagnoses/:id
Delete a diagnosis
Deletes the specified diagnosis.
Required attributes
Optional attributes
Response
{
"id": "2UxtAULYUrX7GVsTKePy",
"object": "diagnosis",
"delete": true
}