interface GetBucketsRequest {
    after?: string;
    id?: string;
    limit?: number;
    name?: string;
    offset?: number;
    org?: string;
    orgID?: string;
}

Properties

after?: string

Resource ID to seek from. Results are not inclusive of this ID. Use after instead of offset.

id?: string

Bucket ID. Only returns the bucket with this ID.

limit?: number

Limits the number of records returned. Default is 20.

name?: string

Bucket name. Only returns buckets with this specific name.

offset?: number

The offset for pagination. The number of records to skip.

org?: string

Organization name. The name of the organization.

  • Doesn't use org or orgID.
  • Creates a bucket in the organization associated with the authorization (API token).
  • Accepts either org or orgID.
  • InfluxDB creates the bucket within this organization.
orgID?: string

Organization ID. The organization ID.

  • Doesn't use org or orgID.
  • Creates a bucket in the organization associated with the authorization (API token).
  • Accepts either org or orgID.
  • InfluxDB creates the bucket within this organization.
MMNEPVFCICPMFPCPTTAAATR