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