- 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
- Open API Engauge
Find All Participant
Developing
GET
/rest/admin/secured/admin-client/participant
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
page
string
optional
size
string
optional
sort
string
optional
search
string
optional
invitation-status
string
optional
participant-status
string
optional
batchId
string
required
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/admin/secured/admin-client/participant?page&size&sort&search&invitation-status&participant-status&batchId'
Responses
🟢200Success
application/json
Body
status
string
required
data
object
required
content
array [object {11}]
required
pageable
object
required
last
boolean
required
totalPages
integer
required
totalElements
integer
required
first
boolean
required
size
integer
required
number
integer
required
sort
object
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": [
{
"participantId": "0ef839b1-1d58-4ef2-84b3-276c9465defe",
"name": "Dileti 1855",
"email": "dileti1855@getmule.com",
"personelNumber": "1234",
"profilePicture": null,
"invitationStatus": "Sent",
"participantStatus": "ON_GOING",
"proctoringStatus": null,
"canManageExternalLink": false,
"canMergeVideo": true,
"canAssignAssessor": true
},
{
"participantId": "43e3ca5c-3465-42bc-86b7-7109e3931eb7",
"name": "Abc Def",
"email": "abc.def@test.com",
"personelNumber": null,
"profilePicture": null,
"invitationStatus": "Not Sent",
"participantStatus": "NEW",
"proctoringStatus": null,
"canManageExternalLink": false,
"canMergeVideo": true,
"canAssignAssessor": true
},
{
"participantId": "bd3ee1a2-5f1c-448d-b80a-096deddc51df",
"name": "Arizal ",
"email": "arizal.riyadi@dayalima.id",
"personelNumber": "",
"profilePicture": null,
"invitationStatus": "Not Sent",
"participantStatus": "NEW",
"proctoringStatus": null,
"canManageExternalLink": false,
"canMergeVideo": true,
"canAssignAssessor": true
},
{
"participantId": "e1c40f1b-75f7-4099-92b0-26fda3dcdaf3",
"name": "Ophie Thea",
"email": "ophiethea11@gmail.com",
"personelNumber": "NOP005",
"profilePicture": null,
"invitationStatus": "Sent",
"participantStatus": "NEW",
"proctoringStatus": null,
"canManageExternalLink": false,
"canMergeVideo": true,
"canAssignAssessor": true
}
],
"pageable": {
"sort": {
"sorted": false,
"unsorted": true,
"empty": true
},
"offset": 0,
"pageNumber": 0,
"pageSize": 20,
"unpaged": false,
"paged": true
},
"last": true,
"totalPages": 1,
"totalElements": 4,
"first": true,
"size": 20,
"number": 0,
"sort": {
"sorted": false,
"unsorted": true,
"empty": true
},
"numberOfElements": 4,
"empty": false
},
"info": {
"id": "SUCCESS_GET_DATA",
"message": "Get data succeed",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}