> For the complete documentation index, see [llms.txt](https://spice.docs.medtroniclabs.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://spice.docs.medtroniclabs.org/engineering/api-documentation/spice-service/get-patient-status.md).

# Get Patient Status

| **API URL**     | {{url}}/spice-service/patient/patient-status |
| --------------- | -------------------------------------------- |
| **Method**      | POST                                         |
| **Description** | Get the patient’s status                     |

#### **Input:** <a href="#getpatientstatus-v2-input" id="getpatientstatus-v2-input"></a>

| **Field Name**         | **Type** | **Mandatory** | **Example**                                                                                                                             |
| ---------------------- | -------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| encounterType          | String   | Yes           | UNDER\_TWO\_MONTHS                                                                                                                      |
| gender                 | String   | Yes           | Male or Female                                                                                                                          |
| isPregnant             | Boolean  | Yes           | Pregnant state indication                                                                                                               |
| patientId              | BigInt   | Yes           | Patient reference id                                                                                                                    |
| provenance             | String   | Yes           | Provenance data                                                                                                                         |
| ticketType             | String   | Yes           | ICCM                                                                                                                                    |
| type                   | String   | Yes           | medical review                                                                                                                          |
| Authorization (Header) | String   | Yes           | Bearer 1ba363a1edf54402b51f58060aa52b11d30f99a490295adec900fdabf2b472181c0bfb165be18f4f5c430c7218a244bd29b9300d3471acc08197ccfb996118f6 |
| client                 | String   | Yes           | mob                                                                                                                                     |

#### **Sample Input:** <a href="#getpatientstatus-v2-sampleinput" id="getpatientstatus-v2-sampleinput"></a>

{\
"encounterType": "UNDER\_TWO\_MONTHS",\
"gender": "female",\
"isPregnant": false,\
"memberId": "784",\
"patientId": "333333317130011",\
"provenance": {\
"modifiedDate": "2025-01-20T07:33:38.436Z",\
"organizationId": "9",\
"spiceUserId": 1713,\
"userId": "11"\
},\
"ticketType": "ICCM",\
"type": "medicalReview"\
}

#### **Output:** <a href="#getpatientstatus-v2-output" id="getpatientstatus-v2-output"></a>

| **Field Name** | **Type** | **Comments**                        |
| -------------- | -------- | ----------------------------------- |
| message        | String   | Patient Status fetched successfully |
| status         | Boolean  | Response status                     |

#### **Sample Output:** <a href="#getpatientstatus-v2-sampleoutput" id="getpatientstatus-v2-sampleoutput"></a>

```
{
  "message": "Patient Status fetched successfully.",
  "entity": {
    "status": null
  },
  "status": true,
  "entityList": null,
  "responseCode": 200,
  "totalCount": null
}
```
