POST api/ReferenceRoles
Request Information
URI Parameters
None.
Body Parameters
ShortReferenceRole| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| companyId | integer |
None. |
|
| name | string |
None. |
|
| IsActive | boolean |
None. |
|
| isPhoneInterview | boolean |
None. |
|
| PhoneInterviewerEmail | string |
None. |
|
| isSelfInterview | boolean |
None. |
|
| referenceId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"companyId": 2,
"name": "sample string 3",
"IsActive": true,
"isPhoneInterview": true,
"PhoneInterviewerEmail": "sample string 6",
"isSelfInterview": true,
"referenceId": 8
}
application/xml, text/xml
Sample:
<ShortReferenceRole xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoRefCheck.Data"> <IsActive>true</IsActive> <PhoneInterviewerEmail>sample string 6</PhoneInterviewerEmail> <companyId>2</companyId> <id>1</id> <isPhoneInterview>true</isPhoneInterview> <isSelfInterview>true</isSelfInterview> <name>sample string 3</name> <referenceId>8</referenceId> </ShortReferenceRole>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |