- 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
- Meeting
- Open
- Open API Engauge
Save Participant Compatibility Check Result
Developing
POST
/rest/web/secured/participant/compatibility/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:
compatibilityId
integer
required
status
string
required
value
string
required
Example
[
{
"compatibilityId": 1,
"status": "Status 1",
"value": "Value 1"
},
{
"compatibilityId": 2,
"status": "Status 2",
"value": "Value 2"
},
{
"compatibilityId": 3,
"status": "Status 3",
"value": "Value 3"
},
{
"compatibilityId": 4,
"status": "Status 4",
"value": "Value 4"
},
{
"compatibilityId": 5,
"status": "Status 5",
"value": "Value 5"
},
{
"compatibilityId": 6,
"status": "Status 6",
"value": "Value 6"
}
]
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/compatibility/save' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"compatibilityId": 1,
"status": "Status 1",
"value": "Value 1"
},
{
"compatibilityId": 2,
"status": "Status 2",
"value": "Value 2"
},
{
"compatibilityId": 3,
"status": "Status 3",
"value": "Value 3"
},
{
"compatibilityId": 4,
"status": "Status 4",
"value": "Value 4"
},
{
"compatibilityId": 5,
"status": "Status 5",
"value": "Value 5"
},
{
"compatibilityId": 6,
"status": "Status 6",
"value": "Value 6"
}
]'
Responses
🟢200Success
application/json
Body
status
string
required
data
array [object {3}]
required
compatibilityId
integer
required
status
string
required
value
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": [
{
"compatibilityId": 1,
"status": "Status 1",
"value": "Value 1"
},
{
"compatibilityId": 2,
"status": "Status 2",
"value": "Value 2"
},
{
"compatibilityId": 3,
"status": "Status 3",
"value": "Value 3"
},
{
"compatibilityId": 4,
"status": "Status 4",
"value": "Value 4"
},
{
"compatibilityId": 5,
"status": "Status 5",
"value": "Value 5"
},
{
"compatibilityId": 6,
"status": "Status 6",
"value": "Value 6"
}
],
"info": {
"id": "SUCCESS_SAVE_DATA",
"message": "Participant Compatibility Check Result successfully saved !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}