GET api/InspectionItems/{id}/Measurements

Returns the list of measurements related to the given inspection item.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Id of inspection item.

string

Required

Body Parameters

None.

Response Information

Resource Description

Returns the list of measurements related to the given inspection item.

Collection of CrmMeasurement
NameDescriptionTypeAdditional information
Type

Type of measurement. Must match a value in the picklist configured in CRM.

string

Required

Name

Name of measurement.

string

Optional

Amount

Amount of measurement.

decimal number

Optional

Height

Height of measurement.

decimal number

Optional

Length

Length of measurement.

decimal number

Optional

Width

Width of measurement.

decimal number

Optional

InspectionItemObject

Used to reference the related inspection item in CRM.

EntityReference

Optional

IsRequired

Determines whether the measurement is required for the inspection item.

boolean

Optional

Reference

Used to reference the entity in CRM.

EntityReference

Optional

SystemDate

Current system date of the client that created this object.

date

Optional

CapturedDate

Date and time the client created this object.

date

Optional

Response Formats

application/json, text/json

Sample:
[
  {
    "Type": "sample string 1",
    "Name": "sample string 2",
    "Amount": 1.0,
    "Height": 1.0,
    "Length": 1.0,
    "Width": 1.0,
    "InspectionItemObject": {
      "Id": "87e685a6-caea-4bdd-a219-13383cf344eb",
      "LogicalName": "sample string 2",
      "Name": "sample string 3"
    },
    "IsRequired": true,
    "Reference": {
      "Id": "87e685a6-caea-4bdd-a219-13383cf344eb",
      "LogicalName": "sample string 2",
      "Name": "sample string 3"
    },
    "SystemDate": "2025-05-23T16:36:56.1960648-05:00",
    "CapturedDate": "2025-05-23T16:36:56.1960648-05:00"
  },
  {
    "Type": "sample string 1",
    "Name": "sample string 2",
    "Amount": 1.0,
    "Height": 1.0,
    "Length": 1.0,
    "Width": 1.0,
    "InspectionItemObject": {
      "Id": "87e685a6-caea-4bdd-a219-13383cf344eb",
      "LogicalName": "sample string 2",
      "Name": "sample string 3"
    },
    "IsRequired": true,
    "Reference": {
      "Id": "87e685a6-caea-4bdd-a219-13383cf344eb",
      "LogicalName": "sample string 2",
      "Name": "sample string 3"
    },
    "SystemDate": "2025-05-23T16:36:56.1960648-05:00",
    "CapturedDate": "2025-05-23T16:36:56.1960648-05:00"
  }
]