PUT api/interview/test/question/update/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
InterviewTestQuestionDTOW| Name | Description | Type | Additional information |
|---|---|---|---|
| interview_test_id | integer |
Required |
|
| description | string |
Required |
|
| options | integer |
Required |
|
| has_image | boolean |
Required |
|
| doc_name | string |
Max length: 100 |
|
| doc_extension | string |
Max length: 100 |
|
| doc_size | decimal number |
None. |
|
| doc_file_upload | Collection of byte |
None. |
|
| ranking | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"interview_test_id": 1,
"description": "sample string 2",
"options": 3,
"has_image": true,
"doc_name": "sample string 5",
"doc_extension": "sample string 6",
"doc_size": 1.0,
"doc_file_upload": "QEA=",
"ranking": 1
}
application/xml, text/xml
Sample:
<InterviewTestQuestionDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable"> <description>sample string 2</description> <doc_extension>sample string 6</doc_extension> <doc_file_upload>QEA=</doc_file_upload> <doc_name>sample string 5</doc_name> <doc_size>1</doc_size> <has_image>true</has_image> <interview_test_id>1</interview_test_id> <options>3</options> <ranking>1</ranking> </InterviewTestQuestionDTOW>
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.