Get Resources Within Distance

Overview

Finds resources within a specified distance of given coordinates

Category: Scheduling

Use this action to find resources within a specified distance of given coordinates. Provide the center point and search radius in meters.

Request

Parameter Type Required Description Example
latitude number Yes Center latitude
Min: -90
-33.8688
longitude number Yes Center longitude
Min: -180
151.2093
distanceMeters integer Yes Search radius in meters 10000

Response

This action’s output is available as $getResourcesWithinDistance in JSONata expressions. See Response format for the standard result.data / result.errors structure and error handling patterns.

Field Type Description
result.data.resources array of object Resources found within the distance

Example output:

{
  "resources": [
    {
      "resourceId": "0014ccb7-73ad-40e1-9282-2c492a0f313a",
      "distanceMeters": 2500
    }
  ]
}