Retrieve the Notes attached to the various RuleComponents of the specified Rule. Notes attached directly to the Rule itself are not included.
created_at
text
updated_at
GET /rules/:rule_id/rule_component_notes
curl https://reactor.adobe.io/rules/:rule_id/rule_component_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": "NT74573e900b184de6a2b255573a70bc24",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-04-21T23:07:32.709Z",
"text": "this is a note on a rule component"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/rule_components/RCcc6e9b96f76848ee8e4752e743d3b1f1"
},
"data": {
"id": "RCcc6e9b96f76848ee8e4752e743d3b1f1",
"type": "rule_components"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/rule_components/RCcc6e9b96f76848ee8e4752e743d3b1f1",
"self": "https://reactor.adobe.io/notes/NT74573e900b184de6a2b255573a70bc24"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}