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": "NT767a64c4647148779cc0d4e84e38232f",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2022-02-04T21:18:58.199Z",
"text": "this is a note on a library"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/libraries/LBed1c044738404c31930702fab4c5c34c"
},
"data": {
"id": "LBed1c044738404c31930702fab4c5c34c",
"type": "libraries"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/libraries/LBed1c044738404c31930702fab4c5c34c",
"self": "https://reactor.adobe.io/notes/NT767a64c4647148779cc0d4e84e38232f"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}