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": "NT9cf401536d9f4f64a850ca9eda56386a",
"type": "notes",
"attributes": {
"author_display_name": "spencer roan",
"author_email": "roan@adobe.com",
"created_at": "2020-12-14T17:41:57.514Z",
"text": "this is a note on an extension"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/extensions/EXe67b920373894e40988f81ddd14607dd"
},
"data": {
"id": "EXe67b920373894e40988f81ddd14607dd",
"type": "extensions"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/extensions/EXe67b920373894e40988f81ddd14607dd",
"self": "https://reactor.adobe.io/notes/NT9cf401536d9f4f64a850ca9eda56386a"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}