Retrieve the Notes attached to the specified DataElement.
created_at
text
updated_at
GET /data_elements/:data_element_id/notes
curl https://reactor.adobe.io/data_elements/:data_element_id/notes \
-H "Accept: application/vnd.api+json;revision=1" \
-H "Content-Type: application/vnd.api+json" \
-H "Authorization: Bearer [TOKEN]" \
-H "X-Api-Key: [KEY]" \
-H "X-Gw-Ims-Org-Id: [ORG_ID]" \
-X GET
{
"data": [
{
"id": "NTcdc8a1076a7443569673555648163265",
"type": "notes",
"attributes": {
"created_at": "2019-12-02T16:18:34.977Z",
"text": "this is a note on a data element"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/data_elements/DE93a5c1ba1a414bd0a4df5a6850406421"
},
"data": {
"id": "DE93a5c1ba1a414bd0a4df5a6850406421",
"type": "data_elements"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/data_elements/DE93a5c1ba1a414bd0a4df5a6850406421",
"self": "https://reactor.adobe.io/notes/NTcdc8a1076a7443569673555648163265"
},
"meta": {
"display_name": "Ben Mills",
"email": "bmills@adobe.com"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}