Skip to content

Commit 57245c6

Browse files
Add links to the API reference docs site
1 parent 882686a commit 57245c6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/content/docs/secrets-store/integrations/workers.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ npx wrangler secrets-store secret create <STORE_ID> --name MY_SECRETS_STORE_SECR
5959

6060
You can find and copy the store ID from the [Secrets Store tab](https://dash.cloudflare.com/?to=/:account/secrets-store/) on the dashboard. Also, make sure your secret `name` does not contain spaces.
6161

62+
Refer to [Secrets Store API](/api/resources/secrets_store/) for the full API documentation.
63+
6264
```bash
6365
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/secrets_store/stores/$STORE_ID/secrets \
6466
--header "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \

src/content/docs/secrets-store/manage-secrets/how-to.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For Wrangler commands, refer to [Cloudflare Workers](/workers/wrangler/commands/
2828
</TabItem> <TabItem label="API">
2929

3030
:::note
31-
A secret `name` cannot contain spaces.
31+
A secret `name` cannot contain spaces. Refer to [Secrets Store API](/api/resources/secrets_store/) for the full API documentation.
3232
:::
3333

3434
```bash
@@ -69,7 +69,7 @@ Duplicate a secret to keep the same secret value but change name, scope, or comm
6969
</TabItem> <TabItem label="API">
7070

7171
:::note
72-
A secret `name` cannot contain spaces.
72+
A secret `name` cannot contain spaces. Refer to [Secrets Store API](/api/resources/secrets_store/) for the full API documentation.
7373
:::
7474

7575
```bash
@@ -105,6 +105,8 @@ You can also edit the secret **Permission scope** and **Comment**.
105105

106106
</TabItem> <TabItem label="API">
107107

108+
Refer to [Secrets Store API](/api/resources/secrets_store/) for the full API documentation.
109+
108110
```bash
109111
curl --request PATCH \
110112
https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/secrets_store/stores/$STORE_ID/secrets/$SECRET_ID \
@@ -135,6 +137,8 @@ Before deleting a secret, make sure it is not deployed. Secrets Store secrets in
135137

136138
</TabItem> <TabItem label="API">
137139

140+
Refer to [Secrets Store API](/api/resources/secrets_store/) for the full API documentation.
141+
138142
```bash
139143
curl --request DELETE \
140144
https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/secrets_store/stores/$STORE_ID/secrets/$SECRET_ID \

0 commit comments

Comments
 (0)