Amazon Location Service · Arazzo Workflow

Amazon Location Service Fleet Onboarding

Version 1.0.0

Provision a map and a tracker, then report a first device position.

1 workflow 1 source API 1 provider
View Spec View on GitHub GeocodingGeofencingLocationMapsRoutingArazzoWorkflows

Provider

amazon-location-service

Workflows

fleet-onboarding
Create a map and tracker and seed the tracker with a device position.
Provisions a map resource for rendering, a tracker resource for device positions, and then uploads an initial device position to the tracker, returning the identifiers of both new resources.
3 steps inputs: DeviceId, Latitude, Longitude, MapName, PositionFiltering, SampleTime, Style, TrackerName outputs: mapArn, mapName, seedErrors, trackerArn, trackerName
1
createMap
Create the map resource used to visualize device positions for the fleet.
2
createTracker
Create the tracker resource that will hold device positions for the fleet.
3
seedPosition
Upload the first device position to the new tracker so it has live data.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Location Service Fleet Onboarding
  summary: Provision a map and a tracker, then report a first device position.
  description: >-
    A full fleet-tracking onboarding flow that pairs the two resources a
    location-aware application needs: it creates a map for visualization and a
    tracker for device positions, then uploads the first device position so the
    tracker has live data the moment it is wired into a map. Every step spells
    out its request inline so the onboarding flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: mapsApi
  url: ../openapi/amazon-location-service-maps-api-openapi.yml
  type: openapi
workflows:
- workflowId: fleet-onboarding
  summary: Create a map and tracker and seed the tracker with a device position.
  description: >-
    Provisions a map resource for rendering, a tracker resource for device
    positions, and then uploads an initial device position to the tracker,
    returning the identifiers of both new resources.
  inputs:
    type: object
    required:
    - MapName
    - Style
    - TrackerName
    - DeviceId
    - Longitude
    - Latitude
    - SampleTime
    properties:
      MapName:
        type: string
        description: The name to assign to the new map resource.
      Style:
        type: string
        description: The map style to render (e.g. VectorEsriStreets).
      TrackerName:
        type: string
        description: The name to assign to the new tracker resource.
      PositionFiltering:
        type: string
        description: Position filtering method for the tracker.
      DeviceId:
        type: string
        description: The identifier of the device whose position is being uploaded.
      Longitude:
        type: number
        description: The longitude coordinate of the device position.
      Latitude:
        type: number
        description: The latitude coordinate of the device position.
      SampleTime:
        type: string
        description: ISO-8601 timestamp for when the position was sampled.
  steps:
  - stepId: createMap
    description: >-
      Create the map resource used to visualize device positions for the fleet.
    operationId: CreateMap
    requestBody:
      contentType: application/json
      payload:
        MapName: $inputs.MapName
        Configuration:
          Style: $inputs.Style
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mapName: $response.body#/MapName
      mapArn: $response.body#/MapArn
  - stepId: createTracker
    description: >-
      Create the tracker resource that will hold device positions for the fleet.
    operationId: CreateTracker
    requestBody:
      contentType: application/json
      payload:
        TrackerName: $inputs.TrackerName
        PositionFiltering: $inputs.PositionFiltering
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      trackerName: $response.body#/TrackerName
      trackerArn: $response.body#/TrackerArn
  - stepId: seedPosition
    description: >-
      Upload the first device position to the new tracker so it has live data.
    operationId: BatchUpdateDevicePosition
    parameters:
    - name: TrackerName
      in: path
      value: $steps.createTracker.outputs.trackerName
    requestBody:
      contentType: application/json
      payload:
        Updates:
        - DeviceId: $inputs.DeviceId
          Position:
          - $inputs.Longitude
          - $inputs.Latitude
          SampleTime: $inputs.SampleTime
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      errors: $response.body#/Errors
  outputs:
    mapName: $steps.createMap.outputs.mapName
    mapArn: $steps.createMap.outputs.mapArn
    trackerName: $steps.createTracker.outputs.trackerName
    trackerArn: $steps.createTracker.outputs.trackerArn
    seedErrors: $steps.seedPosition.outputs.errors

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/amazon-location-service-fleet-onboarding-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.