Skip to content

Commit 1b55f41

Browse files
Touch-up API examples after reviewing API staging docs
1 parent ac86fa4 commit 1b55f41

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/content/docs/byoip/get-started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/addressing/prefix
7272
"on_demand_locked": false,
7373
"advertised": null,
7474
"advertised_modified_at": null,
75-
"loa_document_id": null,
75+
"loa_document_id": "b9ff4afe312246a8b2e7324d98f40b23",
7676
"asn": 13335,
7777
"ownership_validation_token": "<OWNERSHIP_VALIDATION_TOKEN>",
7878
"delegate_loa_creation" : true,
@@ -86,7 +86,7 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/addressing/prefix
8686
2. Take note of the `id` assigned to the prefix you added. It will be used in future steps.
8787
8888
:::note[Letter of Agency (LOA)]
89-
The process described on this page leverages automated <GlossaryTooltip term="letter of agency" link="/byoip/concepts/loa/">LOA</GlossaryTooltip> generation. If you set `delegate_loa_creation` to `false`, you have to manually [upload your LOA](/api/resources/addressing/subresources/loa_documents/methods/create/), make a [PATCH request](/api/resources/addressing/subresources/prefixes/methods/edit/) once the prefix is approved, and contact your account team - which is more prone to error and increases the onboarding time.
89+
The process described on this page leverages automated <GlossaryTooltip term="letter of agency" link="/byoip/concepts/loa/">LOA</GlossaryTooltip> generation. If you set `delegate_loa_creation` to `false`, you have to manually upload your LOA, make a [PATCH request](/api/resources/addressing/subresources/prefixes/methods/edit/) once the prefix is approved, and contact your account team - which is more prone to error and increases the onboarding time.
9090
:::
9191
9292
### Validate prefix ownership

src/content/docs/byoip/troubleshooting/prefix-validation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { APIRequest, GlossaryTooltip } from "~/components";
2626
"on_demand_locked": false,
2727
"advertised": null,
2828
"advertised_modified_at": null,
29-
"loa_document_id": null,
29+
"loa_document_id": "b9ff4afe312246a8b2e7324d98f40b23",
3030
"asn": 13335,
3131
"ownership_validation_token": "<OWNERSHIP_VALIDATION_TOKEN>",
3232
"delegate_loa_creation" : true,
@@ -46,7 +46,7 @@ import { APIRequest, GlossaryTooltip } from "~/components";
4646
3. After applying the necessary changes, use the Validate Prefix endpoint to re-trigger the validation checks.
4747

4848
```bash
49-
curl https://api.cloudflare.com/accounts/{account_id}/addressing/prefixes/prefix_id/validate \
49+
curl https://api.cloudflare.com/accounts/{account_id}/addressing/prefixes/{prefix_id}/validate \
5050
--header "X-Auth-Email: <EMAIL>" \
5151
--header "X-Auth-Key: <API_KEY>"
5252
```

0 commit comments

Comments
 (0)