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