You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api-docs/influxdb/v2/v2/ref.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -13270,7 +13270,7 @@ paths:
13270
13270
application/json:
13271
13271
schema:
13272
13272
$ref: '#/components/schemas/LineProtocolError'
13273
-
description: Line protocol poorly formed and no points were written. Response can be used to determine the first malformed line in the body line-protocol. All data in body was rejected and not written.
13273
+
description: Line protocol is poorly formed and no points were written. Response can be used to determine the first malformed line in the body line-protocol.
13274
13274
'401':
13275
13275
content:
13276
13276
application/json:
@@ -13282,7 +13282,7 @@ paths:
13282
13282
application/json:
13283
13283
schema:
13284
13284
$ref: '#/components/schemas/Error'
13285
-
description: No token was sent and they are required.
13285
+
description: The request didn't provide an authorization token.
13286
13286
'413':
13287
13287
content:
13288
13288
application/json:
@@ -13293,8 +13293,8 @@ paths:
13293
13293
content:
13294
13294
application/json:
13295
13295
schema:
13296
-
$ref: '#/components/schemas/Error'
13297
-
description: The request was well-formed, but some or all the points were rejected due to semantic errors--for example, schema conflicts or retention policy violations. Error message contains details for one or more rejected points.
13296
+
$ref: '#/components/schemas/Error'
13297
+
description: The request was well-formed, but some points were rejected due to semantic errors--for example, schema conflicts or retention policy violations. Error message contains details for one or more rejected points.
13298
13298
'429':
13299
13299
description: Token is temporarily over quota. The Retry-After header describes when to try the write again.
13300
13300
headers:
@@ -14857,7 +14857,7 @@ components:
14857
14857
Default is [`RFC3339` date/time format](/influxdb/v2/reference/glossary/#rfc3339-timestamp).
14858
14858
To include nanoseconds in timestamps, use `RFC3339Nano`.
Default is [`RFC3339` date/time format](/influxdb3/cloud-dedicated/reference/glossary/#rfc3339-timestamp).
1098
1100
To include nanoseconds in timestamps, use `RFC3339Nano`.
1099
1101
1100
-
#### Example formatted date/time values
1102
+
### Example formatted date/time values
1101
1103
1102
1104
| Format | Value |
1103
1105
|:------------|:----------------------------|
@@ -1978,61 +1980,45 @@ components:
1978
1980
type: string
1979
1981
securitySchemes:
1980
1982
BasicAuthentication:
1983
+
type: http
1984
+
scheme: basic
1981
1985
description: |
1982
-
### Basic authentication scheme
1983
-
1984
-
Use the `Authorization` header with the `Basic` scheme to authenticate v1 API `/write` and `/query` requests.
1985
-
When authenticating requests, InfluxDB 3 Cloud Dedicated checks that the `password` part of the decoded credential is an authorized [database token](/influxdb3/cloud-dedicated/admin/tokens/).
1986
-
InfluxDB 3 Cloud Dedicated ignores the `username` part of the decoded credential.
1987
-
1988
-
### Syntax
1986
+
Use the `Authorization` header with the `Basic` scheme to authenticate v1 API requests.
scheme with InfluxDB 1.x API parameters to provide credentials through the query string.
2016
+
Use InfluxDB 1.x API parameters to provide credentials through the query string for v1 API requests.
2031
2017
2032
-
### Query string authentication
2018
+
Querystring authentication works with v1-compatible [`/write`](#operation/PostV1Write) and [`/query`](#operation/GetV1Query) endpoints.
2033
2019
2034
-
In the URL, pass the `p` query parameter to authenticate `/write` and `/query` requests.
2035
-
When authenticating requests, InfluxDB 3 Cloud Dedicated checks that `p` (_password_) is an authorized database token and ignores the `u` (_username_) parameter.
2020
+
When authenticating requests, InfluxDB 3 checks that the `p` (_password_) query parameter is an authorized token
0 commit comments