GET apioauth/matrixv2/dot/{dotNumber}/backfillstatus

Get the status of backfill processing

Request Information

URI Parameters

NameDescriptionTypeAdditional information
dotNumber

The dot number queried

string

Required

Body Parameters

None.

Response Information

Resource Description

A collection of BackFillStatusResponse

Collection of BackFillStatusResponse
NameDescriptionTypeAdditional information
RequestedStart

The start period requesred

date

None.

RequestedEnd

The end period requested

date

None.

State

The state of the backfilling

BackfillState

None.

CurrentProgressDate

How far along the process is up to

date

None.

ProcessingStartedDate

When the backfill process started

date

None.

ProcessingCompletedDate

When the backfill process finished

date

None.

UpdatedDate

When the status was updated

date

None.

CreatedDate

When the backfill entry was created

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RequestedStart": "2025-04-27T16:14:32.8810241+00:00",
    "RequestedEnd": "2025-04-27T16:14:32.8810241+00:00",
    "State": 0,
    "CurrentProgressDate": "2025-04-27T16:14:32.8810241+00:00",
    "ProcessingStartedDate": "2025-04-27T16:14:32.8810241+00:00",
    "ProcessingCompletedDate": "2025-04-27T16:14:32.8810241+00:00",
    "UpdatedDate": "2025-04-27T16:14:32.8810241+00:00",
    "CreatedDate": "2025-04-27T16:14:32.8810241+00:00"
  },
  {
    "RequestedStart": "2025-04-27T16:14:32.8810241+00:00",
    "RequestedEnd": "2025-04-27T16:14:32.8810241+00:00",
    "State": 0,
    "CurrentProgressDate": "2025-04-27T16:14:32.8810241+00:00",
    "ProcessingStartedDate": "2025-04-27T16:14:32.8810241+00:00",
    "ProcessingCompletedDate": "2025-04-27T16:14:32.8810241+00:00",
    "UpdatedDate": "2025-04-27T16:14:32.8810241+00:00",
    "CreatedDate": "2025-04-27T16:14:32.8810241+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBackFillStatusResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <BackFillStatusResponse>
    <RequestedStart>2025-04-27T16:14:32.8810241+00:00</RequestedStart>
    <RequestedEnd>2025-04-27T16:14:32.8810241+00:00</RequestedEnd>
    <State>Queued</State>
    <CurrentProgressDate>2025-04-27T16:14:32.8810241+00:00</CurrentProgressDate>
    <ProcessingStartedDate>2025-04-27T16:14:32.8810241+00:00</ProcessingStartedDate>
    <ProcessingCompletedDate>2025-04-27T16:14:32.8810241+00:00</ProcessingCompletedDate>
    <UpdatedDate>2025-04-27T16:14:32.8810241+00:00</UpdatedDate>
    <CreatedDate>2025-04-27T16:14:32.8810241+00:00</CreatedDate>
  </BackFillStatusResponse>
  <BackFillStatusResponse>
    <RequestedStart>2025-04-27T16:14:32.8810241+00:00</RequestedStart>
    <RequestedEnd>2025-04-27T16:14:32.8810241+00:00</RequestedEnd>
    <State>Queued</State>
    <CurrentProgressDate>2025-04-27T16:14:32.8810241+00:00</CurrentProgressDate>
    <ProcessingStartedDate>2025-04-27T16:14:32.8810241+00:00</ProcessingStartedDate>
    <ProcessingCompletedDate>2025-04-27T16:14:32.8810241+00:00</ProcessingCompletedDate>
    <UpdatedDate>2025-04-27T16:14:32.8810241+00:00</UpdatedDate>
    <CreatedDate>2025-04-27T16:14:32.8810241+00:00</CreatedDate>
  </BackFillStatusResponse>
</ArrayOfBackFillStatusResponse>