POST api/tenant/interview-user/create
Request Information
URI Parameters
None.
Body Parameters
RecInterviewUserDTOWName | Description | Type | Additional information |
---|---|---|---|
firstname | string |
Required Max length: 100 |
|
surname | string |
Required Max length: 100 |
|
other_name | string |
Max length: 100 |
|
gender | string |
Max length: 100 |
|
admin_status | integer |
Required |
|
phone_number | string |
Max length: 100 |
|
email_address | string |
Max length: 100 |
|
profile_picture | string |
None. |
|
position | string |
Max length: 100 |
|
about | string |
Max length: 1000 |
Request Formats
application/json, text/json
Sample:
{ "firstname": "sample string 1", "surname": "sample string 2", "other_name": "sample string 3", "gender": "sample string 4", "admin_status": 5, "phone_number": "sample string 6", "email_address": "sample string 7", "profile_picture": "sample string 8", "position": "sample string 9", "about": "sample string 10" }
application/xml, text/xml
Sample:
<RecInterviewUserDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable"> <about>sample string 10</about> <admin_status>5</admin_status> <email_address>sample string 7</email_address> <firstname>sample string 1</firstname> <gender>sample string 4</gender> <other_name>sample string 3</other_name> <phone_number>sample string 6</phone_number> <position>sample string 9</position> <profile_picture>sample string 8</profile_picture> <surname>sample string 2</surname> </RecInterviewUserDTOW>
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.