POST api/patients/checkVisitEligibility
Request Information
URI Parameters
None.
Body Parameters
PatientEligibilityInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Environment | string |
None. |
|
| APIKey | string |
None. |
|
| PatID | integer |
None. |
|
| PatDB | integer |
None. |
|
| VisitType | integer |
None. |
|
| Medicaid | integer |
None. |
|
| PatientDOB | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Environment": "sample string 1",
"APIKey": "sample string 2",
"PatID": 1,
"PatDB": 1,
"VisitType": 1,
"Medicaid": 1,
"PatientDOB": "sample string 3"
}
text/html, text/plain
Sample:
{"Environment":"sample string 1","APIKey":"sample string 2","PatID":1,"PatDB":1,"VisitType":1,"Medicaid":1,"PatientDOB":"sample string 3"}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PatientEligibilityOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| PatID | integer |
None. |
|
| PatDB | integer |
None. |
|
| VisitType | integer |
None. |
|
| VisitStatus | integer |
None. |
|
| Error Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatID": 1,
"PatDB": 2,
"VisitType": 3,
"VisitStatus": 4,
"Error Message": "sample string 5"
}
text/html, text/plain
Sample:
{"PatID":1,"PatDB":2,"VisitType":3,"VisitStatus":4,"Error Message":"sample string 5"}