POST Api/VideoInterview/Cammio
Receives a notification from Cammio and completes a video interview.
Request Information
URI Parameters
None.
Body Parameters
The video interview result sent by the external video recruiting tool Cammio.
CammioVideoInterviewResultRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| InvitationId |
The unique identifier of the invitation, which turns into the unique identifier of the recently completed interview, which needs to be stored. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"InvitationId": 1
}
application/xml, text/xml
Sample:
<CammioVideoInterviewResultRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ePunkt.Api.Server.Requests.VideoRecruiting"> <InvitationId>1</InvitationId> </CammioVideoInterviewResultRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CammioVideoInterviewResultResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| InterviewId |
The unique identifier of the recently completed interview. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"InterviewId": 1
}
application/xml, text/xml
Sample:
<CammioVideoInterviewResultResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ePunkt.Api.Server.Responses.VideoRecruiting"> <InterviewId>1</InterviewId> </CammioVideoInterviewResultResponse>