- 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
Change Participant Status
Developing
PUT
/rest/admin/secured/participant/status
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
batchId
string
required
status
string
required
activityId
string
required
participantId
string
required
Example
{
"batchId": "dfb9e1b0-d672-4004-8e28-50f489881e5e",
"status": "ON_GOING",
"activityId": "6b0eedbb-2ed2-11ef-bee7-0a71e33928b1",
"participantId": "2a054cd0-d698-4915-ba80-956aab028e1b"
}
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 PUT 'https://service-dash.dlabssaas.io/rest/admin/secured/participant/status' \
--header 'Content-Type: application/json' \
--data-raw '{
"batchId": "dfb9e1b0-d672-4004-8e28-50f489881e5e",
"status": "ON_GOING",
"activityId": "6b0eedbb-2ed2-11ef-bee7-0a71e33928b1",
"participantId": "2a054cd0-d698-4915-ba80-956aab028e1b"
}'
Responses
🟢200Success
application/json
Body
status
string
required
data
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": true,
"info": {
"id": "SUCCESS_EDIT_DATA",
"message": "Participant Status successfully edited !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}