Return a list of forms this user can access
A full list of notes for the requested user Additional optional path parameters /{page} : The page number to show, integer /{searchby}: How to search. notetypeid: Filter by note type ID /{searchvalue}: The value to search by When search by is notetypeid then value is the ID
Path parameters
-
The ID of the user. The logged in user needs to be able to have access to this user.
GET /notes/list/{uniqueid}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/notes/list/{uniqueid} \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"items": {
"note_id": 8841,
"for": {
"code": "P",
"text": "Person"
},
"date_saved": "2022-03-29 13:13:27",
"date_saved_show": "29 Mar 2022 13:13",
"text": "This person is enjoying working with us.",
"visible_to": {
"type": "me",
"group_id": 530,
"group_name": "Staff Group"
},
"created_by": {
"unique_id": 2137,
"name": "Mr John Smith"
},
"note_type": {
"name": "Staff Visits",
"id": 113
},
"color_code": {
"code": "transparent",
"name": "General"
},
"permissions": {
"edit": "Y",
"delete": "Y"
}
},
"paging": {
"total": 5,
"pages": 1,
"thispage": 1,
"firstpage": 1,
"initialpage": "string",
"finalpage": "string",
"lastpage": 1,
"shown_on_this_page": 5
}
}