Retrieve a specific Note, based on its ID.
GET /notes/:id
curl https://reactor.adobe.io/notes/:id \
-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": "NTe63594de6354452b94f6d5ae3385bdc2",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-04-21T23:03:41.211Z",
"text": "this is a note on a property"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/properties/PR956d85154b474a00885eb22d43f31401"
},
"data": {
"id": "PR956d85154b474a00885eb22d43f31401",
"type": "properties"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/properties/PR956d85154b474a00885eb22d43f31401",
"self": "https://reactor.adobe.io/notes/NTe63594de6354452b94f6d5ae3385bdc2"
}
}
}