POST api/test/test-configuration/save
Request Information
URI Parameters
None.
Body Parameters
TestConfigurationSaveDTOW| Name | Description | Type | Additional information |
|---|---|---|---|
| test_batch_id | integer |
None. |
|
| min_score | decimal number |
None. |
|
| max_score | decimal number |
None. |
|
| invitation_notification_mode | byte |
None. |
|
| result_notification_mode | byte |
None. |
|
| enable_sms_notification | boolean |
None. |
|
| enable_email_notification | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"test_batch_id": 1,
"min_score": 2.0,
"max_score": 3.0,
"invitation_notification_mode": 64,
"result_notification_mode": 64,
"enable_sms_notification": true,
"enable_email_notification": true
}
application/xml, text/xml
Sample:
<TestConfigurationSaveDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable"> <enable_email_notification>true</enable_email_notification> <enable_sms_notification>true</enable_sms_notification> <invitation_notification_mode>64</invitation_notification_mode> <max_score>3</max_score> <min_score>2</min_score> <result_notification_mode>64</result_notification_mode> <test_batch_id>1</test_batch_id> </TestConfigurationSaveDTOW>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.