@@ -285,7 +285,8 @@ repository:
285285./services start
286286` ` `
287287
288- > :information_source: **Note:** If you want to clean up and start over again you can do so with the following command:
288+ > [!NOTE]
289+ > If you want to clean up and start over again you can do so with the following command:
289290>
290291> ```console
291292> ./services stop
@@ -399,7 +400,7 @@ diagram, the user must type their own password into the web-app client itself
399400
400401### Logging-in with a Password
401402
402- #### :one: Request
403+ #### 1️⃣ Request
403404
404405To log in using the user-credentials flow send a POST request to the `oauth2/token` endpoint with the
405406`grant_type=password`
@@ -433,7 +434,7 @@ The response returns an `access_token` to identify the user:
433434The access code can then be used with a GET request to the ` /user ` endpoint to obtain user details, for example, taking
434435the ` access_token ` from the response above
435436
436- #### : two : Request
437+ #### 2️⃣ Request
437438
438439``` console
439440curl -G -X GET \
@@ -637,7 +638,7 @@ been included for completeness.
637638To log in using the client credentials flow send a POST request to the ` oauth2/token ` endpoint with the
638639` grant_type=client_credentials `
639640
640- #### : three : Request:
641+ #### 3️⃣ Request:
641642
642643``` console
643644curl -iX POST \
@@ -689,7 +690,7 @@ appropriate for all grant types.
689690
690691### Availability Check
691692
692- #### : four : Request
693+ #### 4️⃣ Request
693694
694695Check to see if Refresh Token flow is available, merely log in using one of the other grant types, for example to log in
695696using the user-credentials flow send a POST request to the ` oauth2/token ` endpoint with the ` grant_type=password `
@@ -722,7 +723,7 @@ The `refresh_token=05e386edd9f95ed0e599c5004db8573e86dff874` from the response a
722723a new ` access_token ` (for example once the previous one has expired) the ` refresh_token ` is used in the OAuth2 refresh
723724token flow and a ` grant_type=refresh_token `
724725
725- #### : five : Request
726+ #### 5️⃣ Request
726727
727728``` console
728729curl -iX POST \
@@ -800,7 +801,7 @@ Level 1 PDP can be used in conjunction with any OAuth2 provider using any flow.
800801If a user has authenticated using ** Keyrock** , the freshness of the access token can be checked by making a GET request
801802to the ` /user ` endpoint.
802803
803- #### : six : Request
804+ #### 6️⃣ Request
804805
805806``` console
806807 curl -X GET \
@@ -854,7 +855,7 @@ As a reminder, **Keyrock** permissions are based on `resource` (e.g. URL) and `a
854855verb). We can retrieve extended user details including access permissions by adding additional parameters to a ` /user `
855856GET request
856857
857- #### : seven : Request
858+ #### 7️⃣ Request
858859
859860``` console
860861 curl -X GET \
0 commit comments