Retrieve the Notes attached to the specified Rule.
created_at
text
updated_at
GET /rules/:rule_id/notes
curl https://reactor.adobe.io/rules/:rule_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": "NT3f61db1ff29b4375be75c0d8584cb912",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-04-21T23:07:26.767Z",
"text": "this is a note on a rule"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/rules/RLcdcfadea889f4b0d96289e2a27626297"
},
"data": {
"id": "RLcdcfadea889f4b0d96289e2a27626297",
"type": "rules"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/rules/RLcdcfadea889f4b0d96289e2a27626297",
"self": "https://reactor.adobe.io/notes/NT3f61db1ff29b4375be75c0d8584cb912"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}