Skip to content

Request JSON File

Last updated: February 23, 2033


Overview

The {orderID}-request.json file is a copy of the order request body. To learn more about the properties of an order request, see Order Resource API Reference.

In this example, the ARD order request included a "select_id", the identifier from the response to an imagery "select" request.

Note: there may be more than one order stored in the same prefix location. When this occurs, there will be an {orderID}-request.json file for each order.

Example request files

This example shows an order that was placed using the ID from the imagery selection response.

{
    "select_id": "5761458962908105173",
    "output_config": {
        "amazon_s3": {
            "bucket": "my-ard-bucket",
            "prefix": "my-prefix"
        }
    },
    "bundle_adjust": false,
    "dry_run": false,
    "notifications": [{
        "type": "email",
        "address": "my-email@email.com"
    }]
}

This example shows an order that was placed for specific acquisition IDs.

{
    "acquisitions": ["10300100BF6FE700", "1040010064B4AD00", "1050010020BBD300"],
    "bbox": [-77.14, 38.85, -76.98, 38.91],
    "output_config": {
        "amazon_s3": {
            "bucket": "my-ard-bucket",
            "prefix": "my-prefix"
        }
    },
    "bundle_adjust": true,
    "dry_run": false,
    "notifications": [{
        "type": "email",
        "address": "my-email@email.com"
    }]
}

File information

File name: {orderID}-request.json

File location: root

File type: JSON

Back to top