GET
/
projects
/
{project_id}
/
events
/
{event_id}
/
data_points
/
{data_point_id}
Retrieve a datapoint
curl --request GET \
  --url https://app.gomangrove.com/api/v1/projects/{project_id}/events/{event_id}/data_points/{data_point_id} \
  --header 'Authorization: <api-key>'
"{\n  \"id\": \"in_kiIuaGIUqRxWUmTY\",\n  \"slug\": \"total-ash-delivered-wet-us-ton\",\n  \"data_point_type\": \"Total Ash Delivered (wet mass) U.S. ton\",\n  \"value\": 290.6,\n  \"unit\": \"U.S. ton\",\n  \"status\": \"complete\"\n}"

Authorizations

Authorization
string
header
required

Path Parameters

project_id
string
required
event_id
string
required

Unique ID of event in the evt_XXXX syntax. For example: evt_DLnYvzbjSujNAvXE

data_point_id
string
required

Unique ID of datapoint in the in_XXXX syntax. For example: in_kiIuaGIUqRxWUmTY

Response

200

id
string
Example:

"in_kiIuaGIUqRxWUmTY"

slug
string
Example:

"total-ash-delivered-wet-us-ton"

data_point_type
string
Example:

"Total Ash Delivered (wet mass) U.S. ton"

value
number
default:0
Example:

290.6

unit
string
Example:

"U.S. ton"

status
string
Example:

"complete"