diff --git a/_includes/guide/try_the_api.html b/_includes/guide/try_the_api.html index f4c06d6..26ea303 100644 --- a/_includes/guide/try_the_api.html +++ b/_includes/guide/try_the_api.html @@ -74,7 +74,7 @@

Sample cURL Command to Submit Credentials for an Access Token

curl -d "" -X POST "https://sandbox.bcda.cms.gov/auth/token" \
-	--user {{site.data.credentials.extra_small.client_id}}:{{site.data.credentials.extra_small.client_secret}} \
+	--user {{site.data.credentials.sandbox.extra_small.client_id}}:{{site.data.credentials.sandbox.extra_small.client_secret}} \
 	-H "accept: application/json"

diff --git a/_includes/partial/faq.html b/_includes/partial/faq.html index e96a276..5a11255 100644 --- a/_includes/partial/faq.html +++ b/_includes/partial/faq.html @@ -58,7 +58,7 @@

Access to the Claim and ClaimResponse resources is handled within BCDA on a per ACO (Accountable Care Organization) ID level. There are no required changes to credentials for those REACH ACOs who would like access to the V2 endpoint. The BCDA V2 service supports the same functionality as V1 API endpoints in both the sandbox and production API environments. All V2 endpoints should work as described in the existing BCDA documentation. To transition from V1 to your BCDA V2 endpoints, replace ‘v1’ in the API call URLs with ‘v2’, as in the cURL example below:

-
curl -X GET "https://sandbox.bcda.cms.gov/api/v1/Patient/$export" \
+
curl -X GET "https://sandbox.bcda.cms.gov/api/v1/Patient/\$export" \
 -H "accept: application/fhir+json" \
 -H "Prefer: respond-async" \
 -H "Authorization: Bearer {access_token}" \