Field NationDeveloper Platform
Field NationDeveloper Platform
IntroductionQuick StartAPI Playground

Getting Started

API Reference

Overview
ScheduleShipmentsBundlesRevisits
Work OrdersLogistics

Bundles

Group multiple work orders for a single provider.


Bundles

Bundles allow you to group multiple work orders together so a single provider can accept them all at once. This is useful for multi-site rollouts in a small geographic area.

Create Bundle

POST /workorders/bundle

{
  "work_order_ids": [1001, 1002, 1003]
}

Response

{
  "bundle_id": "BND-12345",
  "work_orders": [
    { "id": 1001, "title": "Site A Install" },
    { "id": 1002, "title": "Site B Install" },
    { "id": 1003, "title": "Site C Install" }
  ],
  "total_pay": 450.00
}

Note: Bundling must be done before assignment. You cannot bundle already-assigned work orders.

Get Bundle Details

GET /workorders/{id}/bundle

Unbundle Work Orders

Remove work orders from a bundle:

POST /workorders/unbundle

{
  "work_order_ids": [1002]
}

Bundle Rules

RuleDescription
Pre-assignment onlyCan only bundle before providers are assigned
Same geographic areaBundle WOs in reasonable proximity
Compatible schedulesService windows should align
Single providerAll bundled WOs go to same provider

Bundle Benefits

  1. Efficiency: Provider accepts multiple jobs at once
  2. Travel optimization: Nearby sites can be done in sequence
  3. Pay clarity: Combined pay shown upfront
  4. Single routing: Route bundle to talent pool once

Unbundling Scenarios

  • Scope changes requiring different skills
  • Schedule conflicts
  • Provider requests removal of one site

Unbundling after routing may require re-routing the removed work orders.

Related

  • Workflow - Routing bundles
  • Schedule - Coordinating bundle timing

Last updated on

Shipments

Track parts and equipment shipping to/from job sites.

Revisits

Manage return visits when work requires multiple trips.

On this page

Bundles
Create Bundle
Response
Get Bundle Details
Unbundle Work Orders
Bundle Rules
Bundle Benefits
Unbundling Scenarios
Related