- 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
Bulk Save During Answer
Developing
POST
/rest/web/secured/participant/during/answer/bulk-save
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
array of:
questionId
stringÂ
required
answer
stringÂ
required
Example
[
{
"questionId": "9",
"answer": "5"
},
{
"questionId": "10",
"answer": "2"
},
{
"questionId": "11",
"answer": "3"
}
]
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 POST 'https://service-dash.dlabssaas.io/rest/web/secured/participant/during/answer/bulk-save' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"questionId":"9",
"answer":"5"
},
{
"questionId":"10",
"answer":"2"
},
{
"questionId":"11",
"answer":"3"
}
]'
Responses
🟢200Success
application/json
Body
status
stringÂ
required
data
array [object {2}]Â
required
questionId
stringÂ
required
answer
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": [
{
"questionId": "9",
"answer": "5"
},
{
"questionId": "10",
"answer": "2"
},
{
"questionId": "11",
"answer": "3"
}
],
"info": {
"id": "SUCCESS_SAVE_DATA",
"message": "Answers successfully saved !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}