Export to FieldTrack

Any prospecting, CRM, or AI tool can hand a route list directly to FieldTrack. Your user clicks Export and lands inside the FieldTrack PWA with the route already built.

1. Get an import token

Ask the user to generate a personal import token from Integrate with AI → Push in FieldTrack. Treat it like a password — one per user.

2. POST the route

POST https://fieldtrackai.com/api/public/ingest-route?redirect=1
Authorization: Bearer <user import token>
Content-Type: application/json

{
  "name": "Today's hot leads",
  "provider": "your-app-name",
  "stops": [
    { "name": "Acme HQ", "address": "123 Main St, Austin, TX 78701", "note": "Decision-maker on site" },
    { "name": "Globex",  "address": "500 5th Ave, New York, NY 10110" }
  ]
}

Up to 100 stops per request. Each stop needs at least a full street address.

3. Handoff modes

Browser handoff

POST from the user's browser with ?redirect=1. We respond 303 to /app/<route_id>. On mobile this opens the installed PWA.

Server-to-server

POST without the redirect flag. We return JSON with app_url — open it in a new tab or send it to the user however you like.

Drop-in HTML button

<form action="https://fieldtrackai.com/api/public/ingest-route?redirect=1"
      method="POST"
      enctype="application/json">
  <input type="hidden" name="Authorization" value="Bearer USER_TOKEN" />
  <button type="submit">Export to FieldTrack</button>
</form>

For production use, POST from your backend with the token in the Authorization header — never embed user tokens in client HTML.

Need help?

Email hello@fieldtrackai.com and we'll get you wired up.