- 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 By ID Participant Notes
Developing
GET
/rest/web/secured/participant/notes/find/{participantNotesId}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
participantNotesId
stringÂ
required
Example:
45284e7b-22c1-4bcf-af24-b89df7099e5d
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/45284e7b-22c1-4bcf-af24-b89df7099e5d'
Responses
🟢200Success
application/json
Body
status
stringÂ
required
data
objectÂ
required
participantNotesId
stringÂ
required
participantNotesTitle
stringÂ
required
participantNotesBody
stringÂ
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": {
"participantNotesId": "45284e7b-22c1-4bcf-af24-b89df7099e5d",
"participantNotesTitle": "Title 1",
"participantNotesBody": "Body for title 1 "
},
"info": {
"id": "SUCCESS_GET_DATA",
"message": "Get data succeed",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}