POST api/interview/v3/schedule/create
Request Information
URI Parameters
None.
Body Parameters
CreateInterviewScheduleDTOW| Name | Description | Type | Additional information |
|---|---|---|---|
| job_id | integer |
None. |
|
| source_batch_id | integer |
None. |
|
| description | string |
None. |
|
| interview_type | integer |
None. |
|
| level | integer |
None. |
|
| interview_date | date |
None. |
|
| interview_time | time interval |
None. |
|
| contact_person_tenant_user_id | integer |
None. |
|
| contact_person | string |
None. |
|
| address | string |
None. |
|
| instruction | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"job_id": 1,
"source_batch_id": 2,
"description": "sample string 3",
"interview_type": 4,
"level": 5,
"interview_date": "2026-05-15T09:58:44.3017646+00:00",
"interview_time": "00:00:00.1234567",
"contact_person_tenant_user_id": 1,
"contact_person": "sample string 8",
"address": "sample string 9",
"instruction": "sample string 10"
}
application/xml, text/xml
Sample:
<CreateInterviewScheduleDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable"> <address>sample string 9</address> <contact_person>sample string 8</contact_person> <contact_person_tenant_user_id>1</contact_person_tenant_user_id> <description>sample string 3</description> <instruction>sample string 10</instruction> <interview_date>2026-05-15T09:58:44.3017646+00:00</interview_date> <interview_time>PT0.1234567S</interview_time> <interview_type>4</interview_type> <job_id>1</job_id> <level>5</level> <source_batch_id>2</source_batch_id> </CreateInterviewScheduleDTOW>
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.