- Walkthrough DASH SAAS
- CMS
- Employee
- Company
- Province
- Ref Education Level
- Industry
- Company
- Subscription
- Assesment Design
- Menu
- Admin Client
- Master Data
- Meeting
- Participant
- Open
- Assessor
- Report
- Batch
- External Link
- Dummy
- Interview TaskGET
- LoginPOST
- Get Company SettingGET
- WEB
- Auth
- Secured
- Compatibility
- Activity
- Participant
- NDA
- Answer
- Notes
- Password
- Action Log
- Proctoring
- Get Participant InfoGET
- Meeting
- Open
- Open API Engauge
Find All Participant Notes
Developing
GET
/rest/web/secured/participant/notes/find
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
search
stringÂ
optional
before format : search=[somesearch]
after format : search=%5Bsomesearch%5D
Example:
%5Bsomesearch%5D
sort
stringÂ
optional
Example:
participantNotesTitle,ASC
page
integerÂ
optional
Example:
0
size
integerÂ
optional
Example:
10
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://service-dash.dlabssaas.io/rest/web/secured/participant/notes/find?search=%5Bsomesearch%5D&sort=participantNotesTitle,ASC&page=0&size=10'
Responses
🟢200Success
application/json
Body
status
stringÂ
required
data
objectÂ
required
content
array [object {3}]Â
required
pageable
objectÂ
required
last
booleanÂ
required
totalPages
integerÂ
required
totalElements
integerÂ
required
size
integerÂ
required
number
integerÂ
required
sort
objectÂ
required
first
booleanÂ
required
numberOfElements
integerÂ
required
empty
booleanÂ
required
info
objectÂ
required
id
stringÂ
required
message
stringÂ
required
messageEn
nullÂ
required
messageId
nullÂ
required
field
nullÂ
required
redirect
nullÂ
required
Example
{
"status": "success",
"data": {
"content": [
{
"participantNotesId": "f65d08e0-6f16-48e2-b604-f0c613cf4858",
"participantNotesTitle": "Title 1",
"participantNotesBody": "Body for title 1 "
}
],
"pageable": {
"sort": {
"unsorted": false,
"sorted": true,
"empty": false
},
"offset": 0,
"pageNumber": 0,
"pageSize": 10,
"paged": true,
"unpaged": false
},
"last": true,
"totalPages": 1,
"totalElements": 1,
"size": 10,
"number": 0,
"sort": {
"unsorted": false,
"sorted": true,
"empty": false
},
"first": true,
"numberOfElements": 1,
"empty": false
},
"info": {
"id": "SUCCESS_GET_DATA",
"message": "Get data succeed",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}