Retrieve the Notes attached to the specified Property.
created_at
text
updated_at
GET /properties/:property_id/notes
curl https://reactor.adobe.io/properties/:property_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": "NT9abb545672764b1fb9f951c63b28ca88",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-04-21T23:05:05.813Z",
"text": "this is a note on a property"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/properties/PRb2a495b17c394fcea754429ab117f149"
},
"data": {
"id": "PRb2a495b17c394fcea754429ab117f149",
"type": "properties"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/properties/PRb2a495b17c394fcea754429ab117f149",
"self": "https://reactor.adobe.io/notes/NT9abb545672764b1fb9f951c63b28ca88"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}