Retrieve all notes related to the specified Secret.
created_at
text
updated_at
GET /secrets/:secret_id/notes
curl https://reactor.adobe.io/secrets/:secret_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": "NTed848da23cfb4f35a13d02a552d47aea",
"type": "notes",
"attributes": {
"author_display_name": "George Ciltaru",
"author_email": "ciltaru@adobe.com",
"created_at": "2023-04-21T23:09:01.305Z",
"text": "this is a secret note"
},
"relationships": {
"resource": {
"links": {
"related": "https://reactor.adobe.io/secrets/SE62d45cb8eb824d728c08eb7da2ed7c41"
},
"data": {
"id": "SE62d45cb8eb824d728c08eb7da2ed7c41",
"type": "secrets"
}
}
},
"links": {
"resource": "https://reactor.adobe.io/secrets/SE62d45cb8eb824d728c08eb7da2ed7c41",
"self": "https://reactor.adobe.io/notes/NTed848da23cfb4f35a13d02a552d47aea"
}
}
],
"meta": {
"pagination": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
}