From 9ace385bb4c40881fc1a7da9d4bb3a04c8c4d080 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Jun 2026 17:59:13 +0000 Subject: [PATCH 1/2] Initial plan From 1e2f655575797b764e02e752b31c8e799d62e518 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Jun 2026 18:02:17 +0000 Subject: [PATCH 2/2] fix: add missing colon in Authorization ****** --- content/influxdb3/core/admin/tokens/admin/regenerate.md | 2 +- content/influxdb3/enterprise/admin/tokens/admin/create.md | 2 +- content/influxdb3/enterprise/admin/tokens/admin/regenerate.md | 2 +- content/shared/influxdb3-admin/tokens/admin/create.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/influxdb3/core/admin/tokens/admin/regenerate.md b/content/influxdb3/core/admin/tokens/admin/regenerate.md index 1503ae2939..3d6776a04c 100644 --- a/content/influxdb3/core/admin/tokens/admin/regenerate.md +++ b/content/influxdb3/core/admin/tokens/admin/regenerate.md @@ -19,7 +19,7 @@ list_code_example: | #### HTTP API ```bash curl -X POST "http://{{< influxdb/host >}}/api/v3/configure/token/admin/regenerate" \ - --header 'Authorization Bearer OPERATOR_TOKEN' \ + --header 'Authorization: Bearer OPERATOR_TOKEN' \ --header 'Accept: application/json' --header 'Content-Type: application/json' ``` diff --git a/content/influxdb3/enterprise/admin/tokens/admin/create.md b/content/influxdb3/enterprise/admin/tokens/admin/create.md index b85a01bff6..4786ef4ea4 100644 --- a/content/influxdb3/enterprise/admin/tokens/admin/create.md +++ b/content/influxdb3/enterprise/admin/tokens/admin/create.md @@ -17,7 +17,7 @@ list_code_example: | #### HTTP API ```bash curl -X POST "http://{{< influxdb/host >}}/api/v3/configure/token/admin" \ - --header 'Authorization Bearer ADMIN_TOKEN' \ + --header 'Authorization: Bearer ADMIN_TOKEN' \ --json '{ "name": "TOKEN_NAME" }' diff --git a/content/influxdb3/enterprise/admin/tokens/admin/regenerate.md b/content/influxdb3/enterprise/admin/tokens/admin/regenerate.md index 7da106f73d..8e84636018 100644 --- a/content/influxdb3/enterprise/admin/tokens/admin/regenerate.md +++ b/content/influxdb3/enterprise/admin/tokens/admin/regenerate.md @@ -20,7 +20,7 @@ list_code_example: | #### HTTP API ```bash curl -X POST "http://{{< influxdb/host >}}/api/v3/configure/token/admin/regenerate" \ - --header 'Authorization Bearer OPERATOR_TOKEN' + --header 'Authorization: Bearer OPERATOR_TOKEN' ``` source: /shared/influxdb3-admin/tokens/admin/regenerate.md --- diff --git a/content/shared/influxdb3-admin/tokens/admin/create.md b/content/shared/influxdb3-admin/tokens/admin/create.md index 78aaed72d7..aba83f21e2 100644 --- a/content/shared/influxdb3-admin/tokens/admin/create.md +++ b/content/shared/influxdb3-admin/tokens/admin/create.md @@ -88,7 +88,7 @@ Use the following endpoint to create a named admin token: ```bash curl -X POST "http://{{< influxdb/host >}}/api/v3/configure/token/admin" \ - --header 'Authorization Bearer ADMIN_TOKEN' \ + --header 'Authorization: Bearer ADMIN_TOKEN' \ --json '{ "name": "TOKEN_NAME" }'