- 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 Pre/Post Answer
Developing
POST
/rest/web/secured/participant/pre-post/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
activityId
stringÂ
required
questionAnswer
array [object {2}]Â
required
questionId
stringÂ
required
answer
stringÂ
required
Example
{
"activityId": "6b0f1994-2ed2-11ef-bee7-0a71e33928b1",
"questionAnswer": [
{
"questionId": "9",
"answer": "1"
},
{
"questionId": "10",
"answer": "1"
},
{
"questionId": "11",
"answer": "1"
}
]
}
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/pre-post/answer/bulk-save' \
--header 'Content-Type: application/json' \
--data-raw '{
"activityId":"6b0f1994-2ed2-11ef-bee7-0a71e33928b1",
"questionAnswer" : [
{
"questionId":"9",
"answer":"1"
},
{
"questionId":"10",
"answer":"1"
},
{
"questionId":"11",
"answer":"1"
}
]
}'
Responses
🟢200Success
application/json
Body
status
stringÂ
required
data
objectÂ
required
activityId
stringÂ
required
questionAnswer
array [object {2}]Â
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": {
"activityId": "6b0f1994-2ed2-11ef-bee7-0a71e33928b1",
"questionAnswer": [
{
"questionId": "9",
"answer": "1"
},
{
"questionId": "10",
"answer": "1"
},
{
"questionId": "11",
"answer": "1"
}
]
},
"info": {
"id": "SUCCESS_SAVE_DATA",
"message": "Answers successfully saved !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}