API Documentation
Authentication
Documentation for the Fasten Connect API
โI
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
๐ TEFCA IAS is now Generally Available! See our TEFCA Developer Guide for details.
Documentation for the Fasten Connect API
: and then base64 encoded.
The resulting string should be prefixed with Basic and included in the Authorization header of the request.For example, if your Public ID is public_test_123456324234234 and your Private Key is private_test_9u2orjsd02lk3)i03423,
then the fieldโs value is the Base64 encoding of public_test_123456324234234:private_test_9u2orjsd02lk3)i03423.Then the Authorization header field will appear as:Authorization: Basic cHVibGljX3Rlc3RfMTIzNDU2MzI0MjM0MjM0OnByaXZhdGVfdGVzdF85dTJvcmpzZDAybGszKWkwMzQyMwo=
# The following Curl examples are equivalent.
# `-u` is the shorthand for `--user`, and can be used to avoid manually encoding the credentials.
curl -u 'public_test_123456324234234':'private_test_9u2orj....sd02lk3)i03423' \
-X POST \
--data '{"org_connection_id":"ebea708d-c5fa-4294-9051-da48ef08c78a"}' \
https://api.connect.fastenhealth.com/v1/bridge/fhir/ehi-export
curl -H 'Authorization: Basic cHVibGljX3Rlc3RfMTIzNDU2MzI0MjM0MjM0OnByaXZhdGVfdGVzdF85dTJvcmpzZDAybGszKWkwMzQyMwo=' \
-X POST \
--data '{"org_connection_id":"ebea708d-c5fa-4294-9051-da48ef08c78a"}' \
https://api.connect.fastenhealth.com/v1/bridge/fhir/ehi-export
