Field NationDeveloper Platform
Field NationDeveloper Platform
IntroductionQuick StartAPI Playground

Getting Started

API Reference

Overview
ScheduleShipmentsBundlesRevisits
Work OrdersLogistics

Shipments

Track parts and equipment shipping to/from job sites.


Shipments

If you are shipping parts to the site (or expecting a return), use the Shipments object to track deliveries.

Why use Shipments? Adding tracking numbers here allows the provider to see shipment status directly in their mobile app. This significantly reduces "Where is the part?" phone calls.

List Shipments

GET /workorders/{id}/shipments

Response

{
  "results": [
    {
      "id": 201,
      "description": "Router Box",
      "carrier": "FedEx",
      "tracking_number": "123456789",
      "direction": "to_site",
      "status": "delivered",
      "created": { "utc": "2024-01-10 10:00:00" }
    }
  ]
}

Create Shipment

POST /workorders/{id}/shipments

{
  "description": "Router Box",
  "carrier": {
    "name": "FedEx",
    "tracking": "123456789"
  },
  "direction": "to_site"
}

Update Shipment

PUT /workorders/{id}/shipments/{shipment_id}

{
  "status": "delivered",
  "tracking_number": "123456789-updated"
}

Delete Shipment

DELETE /workorders/{id}/shipments/{shipment_id}

Shipment Direction

DirectionDescription
to siteParts shipping TO the work location
from siteReturns shipping FROM the site
to providerParts shipping directly to the provider
to other locationShipping to a third-party location

Carriers

Supported carrier values (case-insensitive name):

  • ups
  • fedex
  • usps
  • other

Shipment Status

StatusDescription
pendingShipment created, not yet sent
in_transitPackage is on the way
deliveredPackage arrived
delayedShipping issues

Link tracking numbers so providers can check delivery status before traveling to the site.

Related

  • Schedule - Coordinate timing with deliveries
  • Bundles - Multi-site shipments

Last updated on

Schedule

Manage work order scheduling and ETAs.

Bundles

Group multiple work orders for a single provider.

On this page

Shipments
List Shipments
Response
Create Shipment
Update Shipment
Delete Shipment
Shipment Direction
Carriers
Shipment Status
Related