Skip to main content
POST
/
v1
/
measure-reports
Create measure report
curl --request POST \
  --url https://api.clinikapi.com/v1/measure-reports \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "measureId": "<string>",
  "period": {
    "start": "<string>",
    "end": "<string>"
  },
  "patientId": "<string>",
  "date": "<string>",
  "reporterId": "<string>",
  "group": [
    {
      "code": "<string>",
      "population": [
        {
          "code": "<string>",
          "count": 123
        }
      ],
      "measureScore": {
        "value": 123,
        "unit": "<string>"
      }
    }
  ]
}
'

Authorizations

x-api-key
string
header
required

Your ClinikAPI secret key (clk_live_* or clk_test_*)

Body

application/json
status
enum<string>
required
Available options:
complete,
pending,
error
type
enum<string>
required
Available options:
individual,
subject-list,
summary,
data-collection
measureId
string
required
Maximum string length: 2000
period
object
required
patientId
string
Maximum string length: 128
date
string
Maximum string length: 50
reporterId
string
Maximum string length: 128
group
object[]
Maximum array length: 20

Response

201

Measure report created