Skip to content

Commit 1956e95

Browse files
committed
NLB-6987: Document steps to access module versions through Dataplane API
1 parent 13847ba commit 1956e95

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

content/nginxaas-azure/module-changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,29 @@ url: /nginxaas/azure/module-changelog/
88
Learn about the modules supported by the latest versions of F5 NGINX as a Service for Azure.
99

1010

11+
## Accessing Module Versions via Dataplane API:
12+
13+
To access available module versions from the dataplane API, follow these steps:
14+
- View Your API Endpoints and Create an API Key
15+
- Follow the [Getting Started instructions](https://docs.nginx.com/nginxaas/azure/loadbalancer-kubernetes/#getting-started) to locate your dataplane API endpoint and create an API key
16+
17+
- Construct the Request URL
18+
- Add `/packages` to your dataplane API endpoint.
19+
- Example: `https://<your-endpoint>/packages`
20+
21+
- Authenticate API Requests
22+
- Base64 encode your API key and add prefix `ApiKey` to the encoded string.
23+
- Set the `Authorization` HTTP header to:
24+
`ApiKey <your_api_key>`
25+
26+
- Query Module Versions
27+
28+
```bash
29+
curl -H "Authorization: ApiKey <your_api_key>" https://<your-endpoint>/packages
30+
```
31+
32+
33+
1134
## July 03, 2025
1235

1336
### Stable

0 commit comments

Comments
 (0)