Retrieve the Notes attached to the specified Library.
created_at
text
updated_at
GET /libraries/:library_id/notes
curl https://reactor.adobe.io/libraries/:library_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": "NT313d16bfb7d64231a656dcc85fa1e341",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-04-21T23:03:35.766Z",
"text": "this is a note on a library"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/libraries/LB06b3af6e8b0e40829d84772ad31cdcc9"
},
"data": {
"id": "LB06b3af6e8b0e40829d84772ad31cdcc9",
"type": "libraries"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/libraries/LB06b3af6e8b0e40829d84772ad31cdcc9",
"self": "https://reactor.adobe.io/notes/NT313d16bfb7d64231a656dcc85fa1e341"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}