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": "NT5590c682325946328a4898e47ccf3d84",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-01-30T20:50:35.474Z",
"text": "this is a note on a data element"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/data_elements/DE955c4007c9c345f7b1548f3575ef9ac6"
},
"data": {
"id": "DE955c4007c9c345f7b1548f3575ef9ac6",
"type": "data_elements"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/data_elements/DE955c4007c9c345f7b1548f3575ef9ac6",
"self": "https://reactor.adobe.io/notes/NT5590c682325946328a4898e47ccf3d84"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}