Retrieve the Notes attached to the specified Extension.
created_at
text
updated_at
GET /extensions/:extension_id/notes
curl https://reactor.adobe.io/extensions/:extension_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": "NTd71d64dbfb0b4890aa2a9769ba16f5fb",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-04-21T22:59:03.957Z",
"text": "this is a note on an extension"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/extensions/EXbb077191e2c14cc68176826724cf0d63"
},
"data": {
"id": "EXbb077191e2c14cc68176826724cf0d63",
"type": "extensions"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/extensions/EXbb077191e2c14cc68176826724cf0d63",
"self": "https://reactor.adobe.io/notes/NTd71d64dbfb0b4890aa2a9769ba16f5fb"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}