interface PostDeleteRequest {
    body: DeletePredicateRequest;
    bucket?: string;
    bucketID?: string;
    org?: string;
    orgID?: string;
}

Properties

Time range parameters and an optional delete predicate expression.

To select points to delete within the specified time range, pass a delete predicate expression in the predicate property of the request body. If you don't pass a predicate, InfluxDB deletes all data with timestamps in the specified time range.

bucket?: string

The name or ID of the bucket to delete data from. If you pass both bucket and bucketID, bucketID takes precedence.

bucketID?: string

The ID of the bucket to delete data from. If you pass both bucket and bucketID, bucketID takes precedence.

org?: string

The organization to delete data from. If you pass both orgID and org, they must both be valid.

  • Doesn't require org or orgID.
  • Deletes data from the bucket in the organization associated with the authorization (API token).
  • Requires either org or orgID.
orgID?: string

The ID of the organization to delete data from. If you pass both orgID and org, they must both be valid.

  • Doesn't require org or orgID.
  • Deletes data from the bucket in the organization associated with the authorization (API token).
  • Requires either org or orgID.
MMNEPVFCICPMFPCPTTAAATR