Skip to content

Commit d9a9690

Browse files
committed
docs: update curl command placeholders
1 parent 42849a6 commit d9a9690

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/guides/auth.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ The Auth0 Connection is the method clients use to authenticate. This guide uses
6767
1. Copy the **Connection Identifier** at the top of the page, you need it for the next step. It should start with something like `con_`.
6868
1. Navigate to **Applications** -> **APIs** -> **Auth0 Management API**.
6969
1. Click the **API Explorer** tab. Copy the token value, you also need it for the next step.
70-
1. Run the following `curl` command to promote the connection to domain-level, replacing `CONNECTION_ID` and `MGMT_API_ACCESS_TOKEN` with the values you copied in the previous steps:
70+
1. Run the following `curl` command to promote the connection to domain-level, replacing `<CONNECTION ID>` and `<MGMT API ACCESS TOKEN>` with the values you copied in the previous steps:
7171

7272
```sh
7373
curl --request PATCH \
74-
--url 'https://dev-p7nxaluy3f2ss4js.us.auth0.com/api/v2/connections/CONNECTION_ID' \
75-
--header 'authorization: Bearer MGMT_API_ACCESS_TOKEN' \
74+
--url 'https://<AUTH0 DOMAIN>/api/v2/connections/<CONNECTION ID>' \
75+
--header 'authorization: Bearer <MGMT API ACCESS TOKEN>' \
7676
--header 'cache-control: no-cache' \
7777
--header 'content-type: application/json' \
7878
--data '{ "is_domain_connection": true }'

0 commit comments

Comments
 (0)