# PNC Details

| **API URL**     | {{url}}/spice-service/medical-review/pnc/details |
| --------------- | ------------------------------------------------ |
| **Method**      | POST                                             |
| **Description** | List details of PNC in medical review            |

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

| **Field Name**         | **Type** | **Mandatory** | **Example**                                                                                                                             |
| ---------------------- | -------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| id                     | Bigint   | Yes           | Patient id                                                                                                                              |
| patientReference       | Bigint   | Yes           | Patient reference                                                                                                                       |
| Authorization (Header) | String   | Yes           | Bearer 1ba363a1edf54402b51f58060aa52b11d30f99a490295adec900fdabf2b472181c0bfb165be18f4f5c430c7218a244bd29b9300d3471acc08197ccfb996118f6 |
| client                 | String   | Yes           | mob                                                                                                                                     |

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

{\
"id": "850",\
"patientReference": "802"\
}

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

| **Field Name**   | **Type** | **Example**                            |
| ---------------- | -------- | -------------------------------------- |
| message          | String   | MedicalReview created successfully     |
| pncMother        | String   | PNC Mother details                     |
| id               | Bigint   | PNC Mother id                          |
| visitNumber      | Bigint   | Visit Number                           |
| patientReference | Bigint   | Patient Reference id                   |
| patientStatus    | Boolean  | Patient Status                         |
| isMotherAlive    | Boolean  | Mother Alive                           |
| clinicalNotes    | String   | Clinical Notes                         |
| encounter        | String   | Encounter details of the patient       |
| referred         | Boolean  | Patient referred status                |
| patientId        | Bigint   | Patient id                             |
| memberId         | Bigint   | Household member ID                    |
| startTime        | Date     | Start Time                             |
| endTime          | Date     | End Time                               |
| provenance       | String   | Provenance details of the organization |
| latitude         | Long     | Location of the registration           |
| longitude        | Long     | Location of the registration           |
| visitNumber      | Bigint   | Visit Number of patient                |
| prescriptions    | String   | Patient Prescriptions                  |
| summaryStatus    | String   | Summary Status                         |
| value            | String   | Value of Summary Status                |
| name             | String   | Name of Summary Status                 |
| status           | Boolean  | Response status                        |

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

```
{
  "message": "MedicalReview Details fetched successfully.",
  "entity": {
    "pncChild": null,
    "pncMother": {
      "id": "850",
      "visitNumber": 1,
      "patientReference": "802",
      "patientStatus": null,
      "diagnosis": [],
      "isMotherAlive": false,
      "breastCondition": null,
      "breastConditionNotes": null,
      "involutionsOfTheUterus": null,
      "involutionsOfTheUterusNotes": null,
      "presentingComplaints": null,
      "presentingComplaintsNotes": null,
      "systemicExaminations": null,
      "systemicExaminationsNotes": null,
      "clinicalNotes": null,
      "encounter": null,
      "prescriptions": [],
      "summaryStatus": [
        {
          "value": "OnTreatment",
          "name": "On Treatment"
        },
        {
          "value": "Recovered",
          "name": "Recovered"
        }
      ],
      "investigations": [],
      "labourDTO": null,
      "neonateOutcome": null
    },
    "child": null
  },
  "status": true,
  "entityList": null,
  "responseCode": 200,
  "totalCount": null
}
```
