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