How to Get Started
To begin, you will need a user-specific API key from Infoway, making it easy to configure HL7 tools for seamless terminology access. For more detailed instructions you can refer to HL7’s documentation.
Supported Versions
- HL7 IG Publisher version 1.8.1 or later
- HL7 Validator version 6.5.0 or later
Accessing the Terminology Server APIs with an API Key
If your application does not support OAuth2 credentials (the preferred method), and you are using tools other than the HL7 tools mentioned above, then you can use an API Key to access the Terminology Server APIs as a final option. Follow these steps carefully, as the process differs from the OAuth2 flow.
- Use the Dedicated API Key URL
- To access the APIs using an API Key, use the following URL: https://terminologystandardsservice.ca/tx/fhir
- Ensure that all API requests include the `/tx/fhir` context path before appending query parameters.
- Include the API Key in the HTTP Header
- The API Key must be provided as an HTTP header in your requests. Api-Key: <your-api-key>
- Example CURL Command
- Here is a sample CURL command to demonstrate how to make a request using the API Key:
curl 'https://terminologystandardsservice.ca/tx/fhir' \ -H 'Api-Key: <your-api-key>'
Note
- Syndication API Access: Downloads through the Syndication API are not available for API Key users. Only FHIR Resources are available.
- Compatibility: Use API Keys only if your application does not support OAuth2.
