# Return Profile Notes Returns a list of profile notes for the given profile id. Endpoint: GET /compliance/kyc-protect/profiles/{profileId}/notes Version: 1.10.9 Security: bearerToken ## Query parameters: - `page` (integer) Starting page number. - `pageSize` (integer) Number of items to return per Page. - `searchTerm` (string) Filters the note list by notes with body containing the provided string - `isArchived` (boolean,null) Get archived notes based on this flag. Allowed values are true, false or null ## Path parameters: - `profileId` (string, required) Id of a profile. Example: "9a7ae0c8-f473-4ab6-8dbb-03fc061630cc" ## Response 200 fields (application/json): - `items` (array) - `items.id` (string) Id of the note. - `items.body` (string) Body of the note. - `items.isArchived` (boolean) Value indicating whether the note is archived. - `items.createdAt` (string) Note created time. - `items.createdById` (number) Id of the user who created note. - `items.createdBy` (string) Name of the user who created note. - `items.modifiedAt` (string) Note last updated time. - `items.modifiedById` (number) Id of the user who last modified the note. - `items.modifiedBy` (string) Name of the user who last modified the note. - `items.linkedTo` (string,null) The profile component to which current not is linked to. - `totalSize` (number) The total number of notes returned for the given profileId. - `correlationId` (string) A unique ID assigned to this request. ## Response 400 fields (application/json): - `correlationId` (string) A unique ID assigned to this request. - `message` (string) - `details` (string) Provides further information on why the request was rejected ## Response 401 fields (application/json): - `error` (string) ## Response 403 fields (application/json): - `message` (string) Example: "Access forbidden" ## Response 404 fields (application/json): - `correlationId` (string) A unique ID assigned to this request. - `message` (string) - `details` (string) Provides further information on why the request was rejected