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" }'