POST api/interview/question/create
Request Information
URI Parameters
None.
Body Parameters
RecInterviewQuestionsDTOWName | Description | Type | Additional information |
---|---|---|---|
description | string |
Required |
|
job_id | integer |
None. |
|
has_image | boolean |
Required |
|
doc_file_upload | Collection of byte |
None. |
|
doc_extension | string |
Max length: 100 |
|
doc_size | decimal number |
None. |
|
level | integer |
Required |
|
job_role_id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "description": "sample string 1", "job_id": 1, "has_image": true, "doc_file_upload": "QEA=", "doc_extension": "sample string 3", "doc_size": 1.0, "level": 4, "job_role_id": 1 }
application/xml, text/xml
Sample:
<RecInterviewQuestionsDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable"> <description>sample string 1</description> <doc_extension>sample string 3</doc_extension> <doc_file_upload>QEA=</doc_file_upload> <doc_size>1</doc_size> <has_image>true</has_image> <job_id>1</job_id> <job_role_id>1</job_role_id> <level>4</level> </RecInterviewQuestionsDTOW>
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.