GET
/
datapoints
/
{id}
curl --request GET \
  --url https://api.sandbox.isometric.com/mrv/v0/datapoints/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-client-secret: <x-client-secret>'
{
  "description": "<string>",
  "display_name": "<string>",
  "id": "dtp_1DVKHKS101S0Q61Q",
  "measured_at": "2023-11-07T05:31:56Z",
  "measurement_location_id": "mlc_1CCZASA6Q1S0V8T4",
  "project_id": "prj_1CTWZQGKE1S0VAXA",
  "quantity": {
    "magnitude": 123,
    "standard_deviation": 123,
    "unit": "<string>"
  },
  "source_ids": [
    "src_1EBBF4M7X1S06G1Y"
  ],
  "supplier_reference_id": "<string>",
  "type": "CONSTANT"
}

Authorizations

Authorization
string
header
required

A JWT Bearer token header for authentication and authorization, in the format Authorization: Bearer <token>

Headers

x-client-secret
string
required

A secret token identifying the client connecting to the API

Example:

"Syou3EZiO5vuMEgNyBeA8cjEMYOnQDwP"

Path Parameters

id
string
required

Response

200
application/json
Successful Response
description
string | null
required
display_name
string
required
id
string
required
Required string length: 20 - 36
Example:

"dtp_1DVKHKS101S0Q61Q"

measured_at
string | null
required
measurement_location_id
string | null
required
Required string length: 20 - 36
Example:

"mlc_1CCZASA6Q1S0V8T4"

project_id
string | null
required
Required string length: 20 - 36
Example:

"prj_1CTWZQGKE1S0VAXA"

quantity
object
required
source_ids
string[]
required
supplier_reference_id
string | null
required
type
enum<string>
required
Available options:
CONSTANT,
STANDARD_PUBLISHED_VALUE,
REPORTED,
ASSUMPTION,
DERIVED

Was this page helpful?