Can anybody explain how to use the FHIR API and the standard API after creating an application? I’m able to access the FHIR API using a patient access token, and the data is being fetched successfully. However, when I try to access the /api/facility endp
You likely registered your app without requesting the standard api scopes (not FHIR api scopes). Standard api would be facility.read for the scope (note the lowercase).
Standard scopes have to be registered using an HTTP rest request instead of the GUI interface.
Could you please tell me how to assign these scopes while registering the app? I couldn’t find the scope option in the GUI interface. Could you please share the steps to achieve this?
i have registered my app using this example
Look at the Authorization → Registration section. There’s an example from the command line of making a POST request to register your app.