Skip to main content

Tasking Status

This table describes the statuses that may be returned during the lifecycle of a tasking request.

  • An "in progress" state indicates an interim step in the tasking lifecycle has been completed.
  • A "final" state indicates the tasking request has ended and will not proceed further.
StatusDescriptionStateNotification Level
INITIALThe request was submitted to the Tasking API and has passed API validation. It will now be submitted to Vantor headquarters for acceptance.startINITIAL_FINAL, INTERMEDIATE
ACCEPTEDThe request has passed validation by Vantor headquarters and will be scheduled for collection.in progressINITIAL_FINAL, INTERMEDIATE
AWAITING-COLLECTIONThe tasking request has been scheduled and is awaiting collection.in progressINTERMEDIATE
IN-PRODUCTIONThe image has been acquired and sent to the production system for processing.in progressINTERMEDIATE
DELIVERY-SUCCESSContent has been produced and delivered for XX% of the AOI.in progressINTERMEDIATE
FULFILLEDAll imagery collected for this request been successfully produced, delivered, and billed for greater than or equal to 99% of the total billable area.finalINITIAL_FINAL, INTERMEDIATE, FINAL_ONLY
UNFULFILLEDTasking request expired without fulfillment.finalINITIAL_FINAL, INTERMEDIATE, FINAL_ONLY
PARTIALLY-FULFILLEDContent was collected, produced, delivered, and billed for some portion of the AOI, and at least part of the AOI will not be fulfilled. Only the delivered image(s) incur a charge.finalINITIAL_FINAL, INTERMEDIATE, FINAL_ONLY
DENIEDThe request has been denied by Vantor headquarters and will not be scheduled for collection.finalINITIAL_FINAL, INTERMEDIATE, FINAL_ONLY
CANCELEDThe owner of the tasking request sent a "cancel" request via the Tasking API.finalINITIAL_FINAL, INTERMEDIATE, FINAL_ONLY
FAILEDAn error has occurred. See error message for more details.finalINITIAL_FINAL, INTERMEDIATE, FINAL_ONLY
ERRORAn error has occurred, but the error type is not available. Contact support@vantor.com for more details.finalINITIAL_FINAL, INTERMEDIATE, FINAL_ONLY

Note: Fulfillment of a requested AOI may require more than one image to be collected. Each individual image is produced, delivered, and billed upon collection.

Additional attributes provide information related to status:

  • "description": Human-readable description of the status event.
  • "transition_time: Timestamp of the event.
  • "details": Additional details such as delivery information. Most events do not have additional details.

An example of an event:

{
"status": “FULFILLED”,
"transition_time": "2025-03-10T05:05:45.904548Z",
"description": “Tasking request is complete; all imagery has been delivered."
}

API status requests

To retrieve the status and status details for a tasking request, See GET a tasking request.

See also:Validation Checks and Errors.

Delivery Details

The DELIVERY-SUCCESS status messages include delivery information in the details field:

 {
"status": "DELIVERY-SUCCESS",
"details": {
"deliveries": [
{
"type": "amazon_s3",
"delivery_location": "s3://your-bucket/your-prefix/6845697022289523712-TASK"
},
],
"catalog_ids": [
"B1100011010B9010",
"B150001101035E10",
"B1100011010B4610"
],
"delivery_id": "200002130875_01",
"total_size_mb": 3918.481,
"total_file_count": 142,
"percent_delivered": 40
},
"description": "Content has been produced and delivered for 40% of the tasking AOI.",
"transition_time": "2025-11-07T22:52:30+00:00"
}

The delivery_id field shows the "subdirectory" the files are delivered to. In the case that the tasking request is fulfilled over more than one collect, the two-digit suffix will increment with each successive delivery.

📁your-bucket
└── 📁your-prefix
└──📁<REQUEST ID>-TASK
├── 📁<DELIVERY-ID>_01
└── 📁<DELIVERY-ID>_02