---
title: "Create patient health metrics"
method: POST
path: "/patient_health_metric"
tags: ["metric"]
---

# Create patient health metrics

`POST /patient_health_metric`

Create one or more patient health metrics.

Example for creating a patient health result with a patient specified using `meta.query` instead of `id`:

```JSON
  {
    "data": {
      "type": "patient_health_metric",
       "attributes": {
         "code": {
           "system": "LOINC",
           "value": "13457-7"
         },
         "type": "ldl_cholesterol",
         "occurred_at": "2017-03-14T11:00:57.000Z",
         "value": 121,
         "unit": "mg/dl"
      },
      "relationships": {
        "patient": {
          "data": {
            "type": "patient",
            "meta": {
              "query": {
                "identifier": {
                  "system": "medical-record-number",
                  "value": "121212"
                },
                "organization": "58c4554710123c5c40dbab81"
              }
            }
          }
        }
      }
    }
  }
```

## Response `200`

OK

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `409` — Invalid Request

---

[API](https://skmtc.net/twinehealth/apis/fitbit-plus-api.md) · [All operations](https://skmtc.net/twinehealth/apis/fitbit-plus-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/twinehealth/fitbit-plus-api/revisions/1c92481b5836/schema)
