Get Resources on Job

Overview

Retrieves resources allocated to a job

Category: Related Data

Use this action to get the resources currently allocated to a job. Returns resource details for each allocation on the job.

Request

Parameter Type Required Description Example
jobId string Yes The ID of the job to get allocated resources for 0014ccb7-73ad-40e1-9282-2c492a0f313a

Response

This action’s output is available as $getResourcesOnJob 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 allocated to the job

Example output:

{
  "Resources": [
    {
      "UID": "00148d32-10ef-4264-adfe-0ff3ece68d92",
      "Name": "John Smith",
      "Category": "Technician",
      "JobAllocationId": "001a1b2c-3d4e-5f6a-7b8c-9d0e1f2a3b4c",
      "JobAllocationStatus": "Confirmed"
    }
  ]
}