Skip to content

Commit

Permalink
static site updates to escape export
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-dzeda committed May 10, 2024
1 parent f6b3e15 commit 7dc770b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _includes/guide/try_the_api.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h3>
Sample cURL Command to Submit Credentials for an Access Token
</h3>
<pre><code>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"</code></pre>

<h3>
Expand Down
2 changes: 1 addition & 1 deletion _includes/partial/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</div>
<p>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:
</p>
<pre><code>curl -X GET "https://sandbox.bcda.cms.gov/api/v1/Patient/$export" \
<pre><code>curl -X GET "https://sandbox.bcda.cms.gov/api/v1/Patient/\$export" \
-H "accept: application/fhir+json" \
-H "Prefer: respond-async" \
-H "Authorization: Bearer <span style="color: #046B99;">{access_token}</span>" \
Expand Down

0 comments on commit 7dc770b

Please sign in to comment.