Retrieves a list of pathways for the requesting practice group.
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/care-nav/pathways?has_forms=true' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
{ "data": [ { … } ], "count": 0 }
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/care-nav/pathways/{id}' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
{ "id": "string", "title": "string", "summary": "string", "in_hours": true, "out_of_hours": true, "suspended": true }
curl -i -X POST \
https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/care-nav/submission \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE' \
-d '{
"submission_type_id": "string",
"patient_id": "string",
"responses": [
{
"form_question_id": "string",
"text_response": "string",
"integer_response": 0,
"boolean_response": true,
"checkbox_response": [
"string"
],
"datetime_response": "string",
"observation_value_response": "string",
"problem_response": "string",
"immunisation_response": "string",
"base_64_content_type": "string",
"base_64_file_name": "string",
"base_64_file_response": "string"
}
]
}'
{ "care_nav_submission_id": "string" }
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/care-nav/submission-types?partner_id=string&pathway_id=string&type=form' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/care-nav/submission-types/{id}' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
{ "id": "string", "pathway_id": "string", "partner_id": "string", "form_id": "string", "title": "string", "summary": "string", "internal_url": "string", "external_url": "string", "external_url_name": "string", "type": "admin_request" }