Creates a attachment link using the provided parameters.
File ID retrieved from List Patient Attachments endpoint. If not provided, file_data must be provided.
curl -i -X POST \
https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/attachment_links \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE' \
-d '{
"expiry_date": "1989-04-11",
"ehr_file_id": "string",
"file_data": "string",
"file_name": "string",
"patient_id": "string",
"maximum_use_count": 1
}'
{ "attachment_link": "string", "attachment_uuid": "string" }
curl -i -X POST \
https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/booking_links \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE' \
-d '{
"appointment_type_id": "string",
"location_id": "string",
"patient_id": "string",
"practitioner_id": "string",
"from_date": "1989-04-11",
"to_date": "1989-04-11",
"expiry_date": "1989-04-11",
"maximum_use_count": 1,
"link_name": "string"
}'
{ "booking_link": "string", "short_link_id": "string" }
Display only the slots available after this date
Display only the slots available before this date
curl -i -X PATCH \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/booking_links/{id}' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE' \
-d '{
"appointment_type_id": "string",
"location_id": "string",
"practitioner_id": "string",
"expiry_date": "1989-04-11",
"maximum_use_count": 1,
"from_date": "1989-04-11",
"to_date": "1989-04-11",
"active": true,
"link_name": "string"
}'
{ "booking_link": "string", "short_link_id": "string" }
curl -i -X POST \
https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/form_links \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE' \
-d '{
"form_id": "string",
"patient_id": "string",
"expiry_date": "1989-04-11",
"maximum_use_count": 1
}'
{ "form_link": "string", "short_link_id": "string" }
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/links/status?id=string&url=string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
{ "status": "unused", "type": "booking", "reference": [ { … } ] }
curl -i -X POST \
https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/video_links \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE' \
-d '{
"link_name": "string",
"patient_id": "string",
"expiry_date": "1989-04-11"
}'
{ "video_link": "string", "short_link_id": "string", "main_room_url": "string" }