Resend Webhooks
iEHR implements a custom operation, $resend
, that can be used to trigger all Subscriptions listening to a a particular resource.
Invoke the $resend
operation
- TypeScript
- CLI
- cURL
const iehr = new IEHRClient();
// auth...
await iehr.post(iehr.fhirUrl(<resourceType>, <id>, '$resend'), {});
iehr login
iehr post '<resourceType>/<id>/$resend' {}
curl 'https://api.iehr.ai/fhir/R4/ai/iehr/<resourceType>/<resourceId>/$resend' \
-X 'POST' \
-H 'authorization: Bearer MY_ACCESS_TOKEN' \
-H 'content-type: application/fhir+json' \
--data-raw '{}
Output
If successful, you will receive the following OperationOutcome
{
"resourceType": "OperationOutcome",
"id": "ok",
"issue": [
{
"severity": "information",
"code": "informational",
"details": {
"text": "All OK"
}
}
]
}
Related Documentation
- Refer to Subscriptions to learn more about iEHR's implementation of FHIR® Subscriptions