Skip to main content

List backfills

This endpoint returns a list of all backfills in a list format.

The list of backfills is ordered starting from the most recently created backfill. The response also includes pagination_metadata, which lets the caller retrieve the next page of results if they exist. More information about pagination can be found in the Pagination-metadata schema.

Query Parameters
    limit integer

    Possible values: >= 1 and <= 1000

    Default value: 20

    cursor string
Responses

OK

Response Headers

    Schema
      data object[] required
    • Array [
    • id string required
      status BackfillStatus required

      Possible values: [pending, reflected, pending_revert, reverted]

      The status of the backfill.

      created_at date-time required
      timeframe_start date-time required
      timeframe_end date-time required
      events_ingested integer required

      The number of events ingested in this backfill.

      close_time date-time nullable required

      If in the future, the time at which the backfill will automatically close. If in the past, the time at which the backfill was closed.

      reverted_at date-time nullable required

      The time at which this backfill was reverted.

      customer_id string nullable required

      The Orb-generated ID of the customer to which this backfill is scoped. If null, this backfill is scoped to all customers.

      deprecation_filter string nullable

      A boolean computed property used to filter the set of events to deprecate

    • ]
    • pagination_metadata object required
      has_more boolean required
      next_cursor string nullable required
    Loading...