POST api/UserInterview?AccessToken={AccessToken}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AccessToken | string |
Required |
Body Parameters
CreateUserInterviewRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| JobApplyId | integer |
None. |
|
| InterviewStatus | string |
None. |
|
| InterviewType | string |
None. |
|
| InterviewLink | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"JobApplyId": 2,
"InterviewStatus": "sample string 3",
"InterviewType": "sample string 4",
"InterviewLink": "sample string 5",
"StartDate": "2025-12-10T15:19:54.8803892+05:30",
"EndDate": "2025-12-10T15:19:54.8803892+05:30"
}
application/xml, text/xml
Sample:
<CreateUserInterviewRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Udyoga.Models.UserModels.UserInterview"> <EndDate>2025-12-10T15:19:54.8803892+05:30</EndDate> <InterviewLink>sample string 5</InterviewLink> <InterviewStatus>sample string 3</InterviewStatus> <InterviewType>sample string 4</InterviewType> <JobApplyId>2</JobApplyId> <StartDate>2025-12-10T15:19:54.8803892+05:30</StartDate> <UserId>1</UserId> </CreateUserInterviewRequest>
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.