Retrieve all notes accessible to the user
Run in Apidog
Lists all notes accessible to the current user. You can filter results using search criteria such as creator, related entity, or date range. Useful for reporting, dashboards, or automations that process multiple notes.
Request Code Samples
curl --location 'https://platform.shopranos.eu/api/task/Note?Id=undefined&Search=undefined&RelatedToId=undefined&RelatedToType=undefined&CreatedBy=undefined&LastModifiedBy=undefined&Page=undefined&PageSize=undefined&Sort=undefined' \
--header 'x-user-id;' Responses
[
{
"id" : "string" ,
"companyId" : "string" ,
"relatedToType" : "Account" ,
"relatedToId" : "string" ,
"subject" : "string" ,
"createdBy" : "string" ,
"lastModifiedBy" : "string" ,
"body" : "string" ,
"editorBody" : "string" ,
"insertDate" : "2019-08-24T14:15:22.123Z" ,
"updateDate" : "2019-08-24T14:15:22.123Z" ,
"contactIds" : [
"string"
] ,
"contactType" : "Lead" ,
"taskType" : "Task" ,
"sortDate" : "2019-08-24T14:15:22.123Z"
}
]
Modified at 2026-03-16 11:48:55