@@ -454,7 +454,8 @@ repository:
454454./services start
455455` ` `
456456
457- > :information_source: **Note:** If you want to clean up and start over again you can do so with the following command:
457+ > [!NOTE]
458+ > If you want to clean up and start over again you can do so with the following command:
458459>
459460> ```console
460461> ./services stop
@@ -507,7 +508,7 @@ Once **Authzforce** is running, you can check the status by making an HTTP reque
507508(usually `8080`). If the response is blank, this is usually because **Authzforce** is not running or is listening on
508509another port.
509510
510- # ### :one: Request
511+ # ### 1️⃣ Request
511512
512513` ` ` console
513514curl -X GET \
@@ -556,7 +557,7 @@ can be used to query **Authzforce** about the domains served and policies held.
556557
557558To request domain information from **Authzforce**, make a request to the `/authzforce-ce/domains` endpoint.
558559
559- # ### :two: Request
560+ # ### 2️⃣ Request
560561
561562` ` ` console
562563curl -X GET \
@@ -588,7 +589,7 @@ endpoint. The following request obtains information about the `gQqnLOnIEeiBFQJCr
588589using a random key by an external Policy Administration Point in this case **Keyrock** has been used as the PAP, and
589590pre-generated the rule sets.
590591
591- # ### :three: Request
592+ # ### 3️⃣ Request
592593
593594` ` ` console
594595curl -X GET \
@@ -624,7 +625,7 @@ To list the generated IDs for all of the PolicySets found within a domain make a
624625` authzforce-ce/domains/{{domain-id}}/pap/policies` endpoint. The following request obtains a list of a given policy IDs
625626found within the `gQqnLOnIEeiBFQJCrBIBDA` domain.
626627
627- # ### :four: Request
628+ # ### 4️⃣ Request
628629
629630` ` ` console
630631curl -X GET \
@@ -657,7 +658,7 @@ To list the available revisions of a policy, make a request to the
657658and can be obtained by drilling down using the previous request. The following request obtains a list revision of a
658659given policy found within the `gQqnLOnIEeiBFQJCrBIBDA` domain.
659660
660- # ### :five: Request
661+ # ### 5️⃣ Request
661662
662663` ` ` console
663664curl -X GET \
@@ -689,7 +690,7 @@ To obtain a single revision of a `<PolicySet>`, make a request to the
689690` authzforce-ce/domains/{{domain-id}}/pap/policies/{{policy-id}}/{{revision-number}}` endpoint. The following request
690691obtains the second revision of the given policy found within the `gQqnLOnIEeiBFQJCrBIBDA` domain.
691692
692- # ### :six: Request
693+ # ### 6️⃣ Request
693694
694695` ` ` console
695696curl -X GET \
@@ -758,7 +759,7 @@ the Body can be expanded as the rules become more complex.
758759To request a decision from Authzforce, make a POST request to the `domains/{domain-id}/pdp` endpoint. In this case the
759760user has the `managers-role-0000-0000-000000000000` and is requesting access the `/app/price-change` resource.
760761
761- # ### :seven: Request
762+ # ### 7️⃣ Request
762763
763764` ` ` console
764765curl -X POST \
@@ -813,7 +814,7 @@ successful request includes a `<Decision>` element to `Permit` access to the res
813814To request a decision from Authzforce, make a POST request to the `domains/{domain-id}/pdp` endpoint. In this case the
814815user has the `security-role-0000-0000-000000000000` and is requesting access the `/app/price-change` resource.
815816
816- # ### :eight: Request
817+ # ### 8️⃣ Request
817818
818819` ` ` console
819820curl -X POST \
@@ -898,7 +899,7 @@ OAuth2 access grants described in a [previous tutorial](https://github.com/FIWAR
898899To log in using the user-credentials flow send a POST request to the `oauth2/token` endpoint of **Keyrock** with the
899900` grant_type=password`
900901
901- # ### :nine: Request
902+ # ### 9️⃣ Request
902903
903904` ` ` console
904905curl -X POST \
@@ -928,7 +929,7 @@ The response returns an `access_token` to identify the user (in this case Bob th
928929If a user has logged in, the `access_token` can be used in combination with the `/user` endpoint to obtain access
929930permissions to a resource. This example retrieves Bob's permissions to a given resource.
930931
931- # ### :one::zero: Request
932+ # ### 1️⃣0️⃣ Request
932933
933934` ` ` console
934935curl -X GET \
@@ -979,7 +980,7 @@ the User has (`managers-role-0000-0000-000000000000`), the application ID that i
979980(`tutorial-dckr-site-0000-xpresswebapp`) and the HTTP verb and resource that are being requested ( a POST request on the
980981` /v2/entities` URL)
981982
982- # ### :one::one: Request
983+ # ### 1️⃣1️⃣ Request
983984
984985` ` ` console
985986curl -X POST \
0 commit comments