Skip to content

Commit 06f874b

Browse files
committed
Replace single quotes
1 parent 5a1cd10 commit 06f874b

File tree

2 files changed

+4
-4
lines changed
  • src/content/docs/cloudflare-one

2 files changed

+4
-4
lines changed

src/content/docs/cloudflare-one/applications/configure-apps/dash-sso-apps.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ curl "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/access/identity_
8383
2. [Get](/api/resources/zero_trust/subresources/access/subresources/applications/methods/list/) the `id` of the `dash_sso` Access application. You can use [`jq`](https://jqlang.github.io/jq/download/) to quickly find the correct application:
8484

8585
```bash title="cURL command"
86-
curl 'https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/access/apps' \
86+
curl "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/access/apps" \
8787
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
8888
| jq '.result[] | select(.type == "dash_sso")'
8989
```
@@ -102,7 +102,7 @@ curl 'https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/access/apps' \
102102

103103
```bash title="cURL command"
104104
curl --request PUT \
105-
'https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/access/apps/3537a672-e4d8-4d89-aab9-26cb622918a1' \
105+
"https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/access/apps/3537a672-e4d8-4d89-aab9-26cb622918a1" \
106106
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
107107
--header "Content-Type: application/json" \
108108
--data '{
@@ -147,7 +147,7 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/sso/v2/connectors
147147

148148
```bash title="cURL command"
149149
curl --request PATCH \
150-
'https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/sso/v2/connectors/2828' \
150+
"https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/sso/v2/connectors/2828" \
151151
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
152152
--header "Content-Type: application/json" \
153153
--data '{

src/content/docs/cloudflare-one/connections/connect-devices/user-side-certificates/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Send a `PUT` request to the [Update Zero Trust account configuration](/api/resou
112112

113113
```sh
114114
curl --request PUT \
115-
'https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/gateway/configuration' \
115+
"https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/gateway/configuration" \
116116
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
117117
--header "Content-Type: application/json" \
118118
--data '{

0 commit comments

Comments
 (0)