Airspace Technologies Quotes API

We support generating a Quote for a potential Order as well as confirming that Quote to place an Order.

OpenAPI Specification

airspace-technologies-quotes-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Airspace API Documentation Address Books Quotes API
  description: "# Introduction\nAirspace's V2 API is a RESTful API. Our API accepts JSON-encoded request bodies, returns JSON-encoded\nresponses, and uses standard HTTP response codes, authentication, and verbs. With this API you can build\nintegrations for Order Creation, Quote Generation, Label Generation, and Active Shipment Monitoring.\n## Getting started with the Airspace API\n1. Check with your Airspace Account Manager representative if you have an account at Airspace.\n2. Reach out to integrations@airspace.com to get an API token. Once a token is generated for your account it will not expire.\n3. We will configure your account’s access to use our test environment. Use authorization type as **bearer token** before starting to make any requests.\n4. **[Optional]** We can also configure [webhooks](#section/Webhooks) to send status updates back to your system.\n5. Once development is complete reach out to us for end to end testing.\n6. After a few successful rounds of testing we will go live with your integration.\n## Environments\nEnvironment | URL | Description\n---|---|---\nProduction | https://api.airspace.com/api/public/v2 | For production use. Communicates with our production environment. Requires configuration.\nTest | https://apitest.airspace.com/api/public/v2 | For development and testing. Generally behaves the same as production.\n## Example Request\n```\n  curl -X POST \"https://apitest.airspace.com/api/public/v2/orders\"\n       -H \"accept: application/json\"\n       -H \"Content-Type: application/json\"\n       -H \"Authorization: Bearer **YOUR_API_KEY_HERE**\"\n       -d @api-data.json\n```\n## Response Codes\nAirspace uses conventional HTTP response codes to indicate the success or failure of an API request. In general:\n  - Codes in the 2xx range indicate success.\n  - Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a charge failed, etc.).\n  - Codes in the 5xx range indicate an error with Airspace's servers (these are rare).\n# Authentication\nYou will need an API key to access the Airspace API. Please contact integrations@airspace.com for your key.\nNote: Once you have a token it will never expire.\n# Webhooks\nAirspace can send webhooks programmatically to inform you about updates to your Order. A webhook is an HTTP request used to provide push notifications rather than making API calls to know the status of your Order. Webhooks can be triggered by an event, for example, a change in order status. When this change occurs, Airspace makes an HTTP request to your URL configured for the webhook.\n\nTo receive Airspace webhooks, set up a dedicated endpoint on your server as a webhook listener that can receive POST requests, then provide this endpoint URL to Airspace. Contact integrations@airspace.com to create or change your subscriptions.\n\n## Webhook Payload Structure\n\nEach webhook notification sent to your endpoint contains a complete payload with order details and event information. The payload structure varies dynamically based on the order state:\n\n- **Regular Status Updates**: Milestone events for normal order progression (picked up, in transit, delivered, etc.)\n- **Order Cancellations**: Problem events with cancellation details and error codes\n- **Order Delays**: Problem events with delay information and updated ETAs\n\n## Example Webhook Payloads\n\n### Regular Status Update\n```json\n{\n  \"message\": \"Order status is now in_route_to_destination. Contact integrations@airspace.com to manage webhook subscriptions.\",\n  \"events\": [{\n    \"milestone\": {},\n    \"occurred_at\": \"2026-01-22T15:30:45.123Z\"\n  }],\n  \"errors\": null,\n  \"updated_order_keys\": [\"status\"],\n  \"order\": {\n    \"tracking_id\": \"ATXYZ123ABC\",\n    \"tracking_url\": \"https://apitest.airspace.com/asap/tracking/ATXYZ123ABC\",\n    \"order_number\": 9000001,\n    \"status\": \"in_route_to_destination\",\n    \"current_segment\": \"delivery_drive\",\n    \"company_name\": \"Example Company\",\n    ...\n  }\n}\n```\n\n### Order Delay\n```json\n{\n  \"message\": \"Order has encountered a delay.\",\n  \"events\": [{\n    \"event_type\": \"delay\",\n    \"problem\": {\n      \"code\": \"2-001\",\n      \"description\": \"Changed shipment parameters\",\n      \"delivery_eta\": \"2026-01-23T16:00:00.000Z\",\n      \"note\": \"\"\n    },\n    \"occurred_at\": \"2026-01-22T14:25:30.941Z\"\n  }],\n  \"errors\": null,\n  \"updated_order_keys\": [\"estimated_pickup_time\"],\n  \"order\": { ... }\n}\n```\n\n### Order Cancellation\n```json\n{\n  \"message\": \"Order has been canceled.\",\n  \"events\": [{\n    \"problem\": {\n      \"code\": \"2-007\",\n      \"description\": \"Nothing to Pick Up or Shipment Not Ready/Uncontrollable delay at pickup\",\n      \"delivery_eta\": null,\n      \"note\": \"Shipment no longer needed\"\n    },\n    \"occurred_at\": \"2026-01-22T16:45:10.525Z\"\n  }],\n  \"errors\": null,\n  \"updated_order_keys\": [\"cancelled_at\", \"status\"],\n  \"order\": { ... }\n}\n```\n\n## Webhook Configuration Requirements\n\nTo receive webhook notifications, ensure your endpoint:\n1. Accepts POST requests with JSON payload\n2. Returns a 2xx status code on successful receipt\n3. Can handle the dynamic nature of the payload based on order state\n4. Uses the `order.tracking_id` or `order.order_number` fields to identify orders\n5. Handles all three event types (milestone, cancellation, delay)\nTo configure webhook status updates, we need the following:\n- The endpoints URL to which you want the updates sent.\n- Password to access the environment (test, production, or both).\n- Authentication method, one of:\n  - Username-password\n  - Bearer token\n  - OAuth\n- Content type (eg: JSON).\n- Request Method(PUT or POST).\n## Order Statuses\nThe following are order statues that are available to receive updates for via webhooks:\n\n**Note:** NFO/ Next Flight Out - an order that is scheduled to be shipped using a flight.\n\nStatus Code | Status Description\n---|---\n`will_call` | Creates a will call order which has not been routed and needs to be activated later for fulfillment. <br /><br />Order has an expiration time, typically 72 hours after creation. The expiration time can be changed as needed.\n`pending` | Creates a Quote which needs to be submitted for fulfillment.\n`customer_completed` | Creates an order in our system for fulfillment.\n`ops_acknowledged` | Our Operations team has acknowledged/reviewed the order.\n`available_for_pickup` | A driver has been assigned to the order.\n`in_route_to_pickup` | The driver is en route to pickup the order.\n`arrived_at_pickup_location` | The driver has arrived at the pickup location.\n`in_route_to_destination` | The driver has picked up the order and is en route to the airport (only for NFO orders).\n`accepted_by_airline` | The order has been successfully delivered to the airport and accepted the by the airline (only for NFO orders).\n`verified_onboard` | The order has been on boarded onto the plane (only for NFO orders).\n`reached_destination_airport` | The order has reached the destination airport (only for NFO orders).\n`available_for_recovery` | A driver has been assigned and the order is available to be picked up from the destination airport (only for for NFO orders).\n`in_route_to_recovery` | The driver is en route to pick up the order from the destination airport (only for NFO orders).\n`arrived_at_recovery_location` | The driver has arrived to pick up the order from the destination airport (only for NFO orders).\n`recovered_from_airline` | The driver has picked up the order from the destination airport and is en route to deliver the order to the destination address (only for NFO orders).\n`arrived_at_destination` / `arrived_at_destination2` | The driver has arrived at the destination address. <br /><br /> **NOTE:** arrived_at_destination is for drive only orders, arrived_at_destination2 is only for NFO orders.\n`delivered` | The order has been delivered.\n`admin_canceled` | The order has been canceled.\n"
  version: 2.6.2
  x-logo:
    url: https://www.airspacetechnologies.com/hubfs/Updated%20logos/Airspace%20horizontal%20logotype%20black%20and%20green%20no%20background%20011321%20(1).png
servers:
- url: https://{environment}.airspace.com/api/public/v2
  variables:
    environment:
      default: apitest
      enum:
      - api
      - apitest
tags:
- name: Quotes
  description: We support generating a Quote for a potential Order as well as confirming that Quote to place an Order.
paths:
  /quotes:
    post:
      summary: Create a Quote for a potential Order
      parameters: []
      security:
      - Bearer: []
      tags:
      - Quotes
      operationId: createQuote
      description: "If the quote comes back as null then the pieces exceed our weight and/or size limits.\n        Please contact our operations team for a quote."
      responses:
        '201':
          description: An estimated arrival time and cost for a potential order
          content:
            application/json:
              example:
                quote:
                  estimated_cost:
                    amount: '359.56'
                    currency: USD
                  estimated_delivery_time: '2022-02-23T00:11:47.389Z'
                  order_details:
                    tracking_id: ATGZHEXXCM
                    tracking_url: https://{environment}.airspace.com/asap/tracking/ATGZHEXXCM
                    order_number: 1030767
                    pickup_time: null
                    pickup_time_local: null
                    pickup_time_timezone: null
                    estimated_pickup_time: '2022-04-26T19:30:11.607Z'
                    estimated_pickup_time_local: '2022-04-26T12:30:11'
                    estimated_pickup_time_timezone: America/Los_Angeles
                    status: pending
                    current_segment: pre_transit
                    estimated_delivery_time: '2022-02-23T00:11:47.389Z'
                    estimated_delivery_time_local: '2022-02-22T16:11:47'
                    estimated_delivery_time_timezone: America/Los_Angeles
                    company_name: Space Air Inc.
                    service_type: optimize_for_cost
                    should_hold_at_airlines: false
                    has_dangerous_goods: null
                    delivery_time: null
                    delivery_time_local: null
                    delivery_time_timezone: null
                    pickup_address:
                      company: PickupsRUs
                      street: 509 8th Street Southeast
                      street2: Apt. 1
                      street3: null
                      city: Orange City
                      state: IA
                      zip: '51041'
                      country: US
                      instructions: pick it up
                      lat: '42.997673'
                      lng: '-96.052662'
                      contact:
                        name: Myles Beier
                        phone_number: '7503087374'
                        country_code: '1'
                    delivery_address:
                      company: DeliveryCrew
                      street: 199 Bell Street
                      street2: Apt. 1
                      street3: null
                      city: Reno
                      state: NV
                      zip: '89503'
                      country: US
                      instructions: deliver it
                      lat: '39.525378'
                      lng: '-119.821145'
                      contact:
                        name: Lynwood Dietrich
                        phone_number: '9739405612'
                        country_code: '1'
                    references:
                    - Ref123
                    - Ref456
                    - Ref789
                    pieces:
                    - id: AT4N3JGKZZ
                      length: 1.0
                      width: 1.0
                      height: 1.0
                      weight: 1.0
                      weight_unit: lbs
                      dimension_unit: in
                      current_location:
                        lat: '33.4518244'
                        lng: '-112.0745357'
                        description: 333 N Central Ave, PHOENIX, AZ, US, 85004
                      barcode: '12345'
                      barcode_type: qr
                      commodity: Other - test
                    - id: ATZCWJ3R2K
                      length: 2.0
                      width: 2.0
                      height: 2.0
                      weight: 2.0
                      weight_unit: lbs
                      dimension_unit: in
                      current_location:
                        lat: '33.4518244'
                        lng: '-112.0745357'
                        description: 333 N Central Ave, PHOENIX, AZ, US, 85004
                      barcode: null
                      barcode_type: null
                      commodity: Other - Other - other
                    created_at: '2022-02-23T23:11:47.477Z'
                    will_call_activated_at: null
                    pod:
                      signature_url: /uploads_test/signature/signature/5/img.png
                      name: Signature-5
                      department: Department-5
                      image_urls: []
                      documents: []
                    order_contacts: []
                    images:
                    - filename: img.png
                      attachment_url: /uploads_test/signature/signature/5/img.png
                      latitude: '32.8961634'
                      longitude: '-117.1368105'
                      piece_guid: null
                    - filename: img.png
                      attachment_url: /uploads_test/order_picture/picture/9/img.png
                      latitude: null
                      longitude: null
                      piece_guid: null
                    flight_information:
                      flights:
                      - airline_name: American Airlines
                        airline_iata: AA
                        flight_number: '1234'
                        departure_airport: San Diego International Airport
                        departure_airport_iata: SAN
                        departure_time: '2022-02-23T18:55:18.734Z'
                        departure_time_local: '2022-02-23T10:55:18'
                        departure_time_timezone: America/Los_Angeles
                        arrival_airport: Tucson International Airport
                        arrival_airport_iata: TUS
                        arrival_time: '2022-02-23T19:55:18.734Z'
                        arrival_time_local: '2022-02-23T12:55:18'
                        arrival_time_timezone: America/Phoenix
                        status: Scheduled
                      air_waybill_numbers: []
                    cancelled_at: null
                    required_vehicle_type: car
                    company_id: ABCD123456
                    order_source: customer_facing
                    shipment_viability:
                      name: Birth Date & Time
                      started_at: '2024-07-10T16:46:00.000Z'
                      duration: 72.0
                      viable_until: '2024-07-13T16:46:00.000Z'
        '401':
          description: Authentication token is not authorized to complete the request.
          content:
            application/json:
              example:
                error: Unauthorized
        '422':
          description: Piece dimensions cannot be zero
          content:
            application/json:
              example:
                errors: 'Validation failed: Order Piece dimensions must be greater than zero'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/quote'
        required: true
  /quotes/{tracking_id}:
    parameters:
    - name: tracking_id
      in: path
      required: true
      description: Tracking ID or Order Number of quote
      schema:
        type: string
    get:
      summary: Retrieve a Quote
      security:
      - Bearer: []
      tags:
      - Quotes
      operationId: getQuoteById
      description: Returns a potential order.
      responses:
        '200':
          description: Returns a potential order with estimated arrival time and cost
          content:
            application/json:
              example:
                quote:
                  estimated_cost:
                    amount: '359.56'
                    currency: USD
                  estimated_delivery_time: '2022-02-23T00:11:47.389Z'
                  order_details:
                    tracking_id: ATGZHEXXCM
                    tracking_url: https://{environment}.airspace.com/asap/tracking/ATGZHEXXCM
                    order_number: 1030767
                    pickup_time: null
                    pickup_time_local: null
                    pickup_time_timezone: null
                    estimated_pickup_time: '2022-04-26T19:30:11.607Z'
                    estimated_pickup_time_local: '2022-04-26T12:30:11'
                    estimated_pickup_time_timezone: America/Los_Angeles
                    status: pending
                    current_segment: pre_transit
                    estimated_delivery_time: '2022-02-23T00:11:47.389Z'
                    estimated_delivery_time_local: '2022-02-22T16:11:47'
                    estimated_delivery_time_timezone: America/Los_Angeles
                    company_name: Space Air Inc.
                    service_type: optimize_for_cost
                    should_hold_at_airlines: false
                    has_dangerous_goods: null
                    delivery_time: null
                    delivery_time_local: null
                    delivery_time_timezone: null
                    pickup_address:
                      company: PickupsRUs
                      street: 509 8th Street Southeast
                      street2: Apt. 1
                      street3: null
                      city: Orange City
                      state: IA
                      zip: '51041'
                      country: US
                      instructions: pick it up
                      lat: '42.997673'
                      lng: '-96.052662'
                      contact:
                        name: Myles Beier
                        phone_number: '7503087374'
                        country_code: '1'
                      custom_attributes:
                      - label: Requires Dock High?
                        option: 'true'
                      - label: Requires Lift Gate?
                        option: 'true'
                    delivery_address:
                      company: DeliveryCrew
                      street: 199 Bell Street
                      street2: Apt. 1
                      street3: null
                      city: Reno
                      state: NV
                      zip: '89503'
                      country: US
                      instructions: deliver it
                      lat: '39.525378'
                      lng: '-119.821145'
                      contact:
                        name: Lynwood Dietrich
                        phone_number: '9739405612'
                        country_code: '1'
                      custom_attributes:
                      - label: Requires Dock High?
                        option: 'true'
                      - label: Requires Lift Gate?
                        option: 'true'
                    references:
                    - Ref123
                    - Ref456
                    - Ref789
                    pieces:
                    - id: AT4N3JGKZZ
                      length: 1.0
                      width: 1.0
                      height: 1.0
                      weight: 1.0
                      weight_unit: lbs
                      dimension_unit: in
                      current_location:
                        lat: '33.4518244'
                        lng: '-112.0745357'
                        description: 333 N Central Ave, PHOENIX, AZ, US, 85004
                      barcode: '12345'
                      barcode_type: qr
                      commodity: Other - test
                    - id: ATZCWJ3R2K
                      length: 2.0
                      width: 2.0
                      height: 2.0
                      weight: 2.0
                      weight_unit: lbs
                      dimension_unit: in
                      current_location:
                        lat: '33.4518244'
                        lng: '-112.0745357'
                        description: 333 N Central Ave, PHOENIX, AZ, US, 85004
                      barcode: null
                      barcode_type: null
                      commodity: Other - Other - other
                    created_at: '2022-02-23T23:11:47.477Z'
                    will_call_activated_at: null
                    pod:
                      signature_url: /uploads_test/signature/signature/8/img.png
                      name: Signature-8
                      department: Department-8
                      image_urls: []
                      documents: []
                    order_contacts: []
                    images:
                    - filename: img.png
                      attachment_url: /uploads_test/signature/signature/8/img.png
                      latitude: '32.8961634'
                      longitude: '-117.1368105'
                      piece_guid: null
                    - filename: img.png
                      attachment_url: /uploads_test/order_picture/picture/12/img.png
                      latitude: null
                      longitude: null
                      piece_guid: null
                    flight_information:
                      flights:
                      - airline_name: American Airlines
                        airline_iata: AA
                        flight_number: '1234'
                        departure_airport: San Diego International Airport
                        departure_airport_iata: SAN
                        departure_time: '2022-02-23T18:55:18.734Z'
                        departure_time_local: '2022-02-23T10:55:18'
                        departure_time_timezone: America/Los_Angeles
                        arrival_airport: Tucson International Airport
                        arrival_airport_iata: TUS
                        arrival_time: '2022-02-23T19:55:18.734Z'
                        arrival_time_local: '2022-02-23T12:55:18'
                        arrival_time_timezone: America/Phoenix
                        status: Scheduled
                      air_waybill_numbers: []
                    cancelled_at: null
                    required_vehicle_type: car
                    company_id: ABCD123456
                    order_source: customer_facing
                    custom_attributes:
                    - label: Requires Dry Ice?
                      option: Customer requests dry ice block from Airspace
                      weight: '10'
                      weight_unit: lbs
                    - label: I'd like to add Airspace Protection Plan to my order
                      amount: '123.5'
                      currency_code: USD
                    shipment_viability:
                      name: Birth Date & Time
                      started_at: '2024-07-10T16:46:00.000Z'
                      duration: 72.0
                      viable_until: '2024-07-13T16:46:00.000Z'
        '401':
          description: Authentication token is not authorized to complete the request.
          content:
            application/json:
              example:
                error: Unauthorized
        '404':
          description: The quote could not be found. Please check the id and try again.
          content:
            application/json:
              example:
                error: Not Found
  /quotes/{tracking_id}/confirm:
    parameters:
    - name: tracking_id
      in: path
      required: true
      description: Tracking ID or Order Number of quote
      schema:
        type: string
    put:
      summary: Confirm a Quote for fulfilment
      security:
      - Bearer: []
      tags:
      - Quotes
      operationId: confirmQuote
      description: Accept the quoted order and submit it for fulfillment
      responses:
        '200':
          description: A confirmed order
          content:
            application/json:
              example:
                order:
                  tracking_id: ATGZHEXXCM
                  tracking_url: https://{environment}.airspace.com/asap/tracking/ATGZHEXXCM
                  order_number: 1030767
                  pickup_time: null
                  pickup_time_local: null
                  pickup_time_timezone: null
                  estimated_pickup_time: '2022-04-26T19:30:11.607Z'
                  estimated_pickup_time_local: '2022-04-26T12:30:11'
                  estimated_pickup_time_timezone: America/Los_Angeles
                  status: customer_completed
                  current_segment: pre_transit
                  estimated_delivery_time: '2022-02-23T00:11:47.389Z'
                  estimated_delivery_time_local: '2022-02-22T16:11:47'
                  estimated_delivery_time_timezone: America/Los_Angeles
                  company_name: Space Air Inc.
                  service_type: optimize_for_cost
                  should_hold_at_airlines: false
                  has_dangerous_goods: null
                  delivery_time: null
                  delivery_time_local: null
                  delivery_time_timezone: null
                  pickup_address:
                    company: PickupsRUs
                    street: 509 8th Street Southeast
                    street2: Apt. 1
                    street3: null
                    city: Orange City
                    state: IA
                    zip: '51041'
                    country: US
                    instructions: pick it up
                    lat: '42.997673'
                    lng: '-96.052662'
                    contact:
                      name: Myles Beier
                      phone_number: '7503087374'
                      country_code: '1'
                    custom_attributes:
                    - label: Requires Dock High?
                      option: 'true'
                    - label: Requires Lift Gate?
                      option: 'true'
                  delivery_address:
                    company: DeliveryCrew
                    street: 199 Bell Street
                    street2: Apt. 1
                    street3: null
                    city: Reno
                    state: NV
                    zip: '89503'
                    country: US
                    instructions: deliver it
                    lat: '39.525378'
                    lng: '-119.821145'
                    contact:
                      name: Lynwood Dietrich
                      phone_number: '9739405612'
                      country_code: '1'
                    custom_attributes:
                    - label: Requires Dock High?
                      option: 'true'
                    - label: Requires Lift Gate?
                      option: 'true'
                  references:
                  - Ref123
                  - Ref456
                  - Ref789
                  pieces:
                  - id: AT4N3JGKZZ
                    length: 1.0
                    width: 1.0
                    height: 1.0
                    weight: 1.0
                    weight_unit: lbs
                    dimension_unit: in
                    current_location:
                      lat: '33.4518244'
                      lng: '-112.0745357'
                      description: 333 N Central Ave, PHOENIX, AZ, US, 85004
                    barcode: '12345'
                    barcode_type: qr
                    commodity: Other - test
                  - id: ATZCWJ3R2K
                    length: 2.0
                    width: 2.0
                    height: 2.0
                    weight: 2.0
                    weight_unit: lbs
                    dimension_unit: in
                    current_location:
                      lat: '33.4518244'
                      lng: '-112.0745357'
                      description: 333 N Central Ave, PHOENIX, AZ, US, 85004
                    barcode: null
                    barcode_type: null
                    commodity: Other - Other - other
                  created_at: '2022-02-23T23:11:47.477Z'
                  will_call_activated_at: null
                  pod:
                    signature_url: /uploads_test/signature/signature/11/img.png
                    name: Signature-11
                    department: Department-11
                    image_urls: []
                    documents: []
                  order_contacts: []
                  images:
                  - filename: img.png
                    attachment_url: /uploads_test/signature/signature/11/img.png
                    latitude: '32.8961634'
                    longitude: '-117.1368105'
                    piece_guid: null
                  - filename: img.png
                    attachment_url: /uploads_test/order_picture/picture/15/img.png
                    latitude: null
                    longitude: null
                    piece_guid: null
                  flight_information:
                    flights:
                    - airline_name: American Airlines
                      airline_iata: AA
                      flight_number: '1234'
                      departure_airport: San Diego International Airport
                      departure_airport_iata: SAN
                      departure_time: '2022-02-23T18:55:18.734Z'
                      departure_time_local: '2022-02-23T10:55:18'
                      departure_time_timezone: America/Los_Angeles
                      arrival_airport: Tucson International Airport
                      arrival_airport_iata: TUS
                      arrival_time: '2022-02-23T19:55:18.734Z'
                      arrival_time_local: '2022-02-23T12:55:18'
                      arrival_time_timezone: America/Phoenix
                      status: Scheduled
                    air_waybill_numbers: []
                  cancelled_at: null
                  required_vehicle_type: car
                  company_id: ABCD123456
                  order_source: customer_facing
                  custom_attributes:
                  - label: Requires Dry Ice?
                    option: Customer requests dry ice block from Airspace
                    weight: '10'
                    weight_unit: lbs
                  - label: I'd like to add Airspace Protection Plan to my order
                    amount: '123.5'
                    currency_code: USD
                  shipment_viability:
                    name: Birth Date & Time
                    started_at: '2024-07-10T16:46:00.000Z'
                    duration: 72.0
                    viable_until: '2024-07-13T16:46:00.000Z'
components:
  schemas:
    shipment_viability:
      type: object
      properties:
        started_at:
          type: string
          example: 2024-07-10 09:46:00 -0700
          description: 'The start time for the shipment’s viability. If timezone is not provided, the pickup address timezone

            is assumed.

            '
        duration:
          type: integer
          example: 72
          description: 'Viability duration of the shipment in hours. If not provided, the default value on the account

            configuration will be used.

            '
      required:
      - started_at
      description: 'Viability window for a shipment. This is the time period for which the shipment is viable and we best

        ensure for it to be delivered prior to its expiration. This feature is only available if your account is

        configured for it. Please contact your Account Manager for details.

        '
    email_notification:
      allOf:
      - type: object
        description: For each email notification a geofence trigger can be specified for distance from pickup or distance to delivery.
        properties:
          email:
            type: string
            example: alerts@airspace.com
            description: Email address used to receive email notifications.
          phone_number:
            type:
       

# --- truncated at 32 KB (49 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/airspace-technologies/refs/heads/main/openapi/airspace-technologies-quotes-api-openapi.yml