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