- 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
Change Password
Developing
PUT
/rest/web/secured/participant/password/change
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Origin
string
optional
Example:
https://bpjs.dash.dlabssaas.io
Referer
string
optional
Example:
https://bpjs.dash.dlabssaas.io/
Body Params application/json
oldPassword
string
required
newPassword
string
required
confirmPassword
string
required
Example
{
"oldPassword": "iwXayrt/ydXlmylKjvL8gw==",
"newPassword": "iwXayrt/ydXlmylKjvL8gw==",
"confirmPassword": "iwXayrt/ydXlmylKjvL8gw=="
}
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/web/secured/participant/password/change' \
--header 'Origin: https://bpjs.dash.dlabssaas.io' \
--header 'Referer: https://bpjs.dash.dlabssaas.io/' \
--header 'Content-Type: application/json' \
--data-raw '{
"oldPassword": "iwXayrt/ydXlmylKjvL8gw==",
"newPassword": "iwXayrt/ydXlmylKjvL8gw==",
"confirmPassword": "iwXayrt/ydXlmylKjvL8gw=="
}'
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_SAVE_DATA",
"message": "Password changed successfully",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}