Skip to main content
POST
/
caregaps
/
api
/
{quality_program}
/
caregap
/
Create a new caregap.
curl --request POST \
  --url https://caregaps.sandbox.elationemr.com/caregaps/api/{quality_program}/caregap/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "definition_id": "<string>",
  "patient_id": "<string>",
  "practice_id": "<string>",
  "created_date": "2023-12-25",
  "detail": "<string>",
  "closed_date": "2023-12-25"
}
'
import requests

url = "https://caregaps.sandbox.elationemr.com/caregaps/api/{quality_program}/caregap/"

payload = {
"definition_id": "<string>",
"patient_id": "<string>",
"practice_id": "<string>",
"created_date": "2023-12-25",
"detail": "<string>",
"closed_date": "2023-12-25"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
definition_id: '<string>',
patient_id: '<string>',
practice_id: '<string>',
created_date: '2023-12-25',
detail: '<string>',
closed_date: '2023-12-25'
})
};

fetch('https://caregaps.sandbox.elationemr.com/caregaps/api/{quality_program}/caregap/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://caregaps.sandbox.elationemr.com/caregaps/api/{quality_program}/caregap/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'definition_id' => '<string>',
'patient_id' => '<string>',
'practice_id' => '<string>',
'created_date' => '2023-12-25',
'detail' => '<string>',
'closed_date' => '2023-12-25'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://caregaps.sandbox.elationemr.com/caregaps/api/{quality_program}/caregap/"

payload := strings.NewReader("{\n \"definition_id\": \"<string>\",\n \"patient_id\": \"<string>\",\n \"practice_id\": \"<string>\",\n \"created_date\": \"2023-12-25\",\n \"detail\": \"<string>\",\n \"closed_date\": \"2023-12-25\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://caregaps.sandbox.elationemr.com/caregaps/api/{quality_program}/caregap/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"definition_id\": \"<string>\",\n \"patient_id\": \"<string>\",\n \"practice_id\": \"<string>\",\n \"created_date\": \"2023-12-25\",\n \"detail\": \"<string>\",\n \"closed_date\": \"2023-12-25\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://caregaps.sandbox.elationemr.com/caregaps/api/{quality_program}/caregap/")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"definition_id\": \"<string>\",\n \"patient_id\": \"<string>\",\n \"practice_id\": \"<string>\",\n \"created_date\": \"2023-12-25\",\n \"detail\": \"<string>\",\n \"closed_date\": \"2023-12-25\"\n}"

response = http.request(request)
puts response.read_body
{
  "definition_id": "<string>",
  "patient_id": "<string>",
  "practice_id": "<string>",
  "created_date": "2023-12-25",
  "id": "<string>",
  "quality_program": "<string>",
  "detail": "<string>",
  "closed_date": "2023-12-25"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

quality_program
string
required

Body

application/json
definition_id
string
required

Definition id this caregap is associated with.

patient_id
string
required

Patient id this caregap is associated with.

practice_id
string
required

Practice id this caregap is associated with.

created_date
string<date>
required

ISO timestamp for when this caregap was created.

status
enum<string>
required

Current status of the caregap

Available options:
open,
closed
detail
string

Extra detail about the caregap.

closed_date
string<date>

ISO timestamp for when the caregap was closed.

closed_by
enum<string>

Who or what action closed the caregap.

Available options:
API,
condition-saved,
feedback

Response

Successful Response

definition_id
string
required

Definition id this caregap is associated with.

patient_id
string
required

Patient id this caregap is associated with.

practice_id
string
required

Practice id this caregap is associated with.

created_date
string<date>
required

ISO timestamp for when this caregap was created.

status
enum<string>
required

Current status of the caregap

Available options:
open,
closed
id
string
required

UUID to identify the caregap

quality_program
string
required

Quality program this caregap is associated with.

detail
string

Extra detail about the caregap.

closed_date
string<date>

ISO timestamp for when the caregap was closed.

closed_by
enum<string>

Who or what action closed the caregap.

Available options:
API,
condition-saved,
feedback