POST api/jobs-vacantcheck/appointments/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
EditJobVacantCheckModel| Name | Description | Type | Additional information |
|---|---|---|---|
| JobTask | Collection of JobTaskModel |
None. |
|
| JobImagesAndVideos | Collection of JobImagesModel |
None. |
|
| InventoryListingImages | Collection of JobImagesModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"JobTask": [
{
"Id": "sample string 1",
"TaskName": "sample string 2",
"IsCompleted": true,
"Remarks": "sample string 4",
"DefectCount": 5,
"DateFinding": "2025-11-07T10:17:47.910512+08:00"
},
{
"Id": "sample string 1",
"TaskName": "sample string 2",
"IsCompleted": true,
"Remarks": "sample string 4",
"DefectCount": 5,
"DateFinding": "2025-11-07T10:17:47.910512+08:00"
}
],
"JobImagesAndVideos": [
{
"Id": "sample string 1",
"ImagePath": "sample string 2",
"FileName": "sample string 3",
"IsDeleted": true
},
{
"Id": "sample string 1",
"ImagePath": "sample string 2",
"FileName": "sample string 3",
"IsDeleted": true
}
],
"InventoryListingImages": [
{
"Id": "sample string 1",
"ImagePath": "sample string 2",
"FileName": "sample string 3",
"IsDeleted": true
},
{
"Id": "sample string 1",
"ImagePath": "sample string 2",
"FileName": "sample string 3",
"IsDeleted": true
}
]
}
application/xml, text/xml
Sample:
<EditJobVacantCheckModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.ClientPropertyManagement.API.Models">
<InventoryListingImages>
<JobImagesModel>
<FileName>sample string 3</FileName>
<Id>sample string 1</Id>
<ImagePath>sample string 2</ImagePath>
<IsDeleted>true</IsDeleted>
</JobImagesModel>
<JobImagesModel>
<FileName>sample string 3</FileName>
<Id>sample string 1</Id>
<ImagePath>sample string 2</ImagePath>
<IsDeleted>true</IsDeleted>
</JobImagesModel>
</InventoryListingImages>
<JobImagesAndVideos>
<JobImagesModel>
<FileName>sample string 3</FileName>
<Id>sample string 1</Id>
<ImagePath>sample string 2</ImagePath>
<IsDeleted>true</IsDeleted>
</JobImagesModel>
<JobImagesModel>
<FileName>sample string 3</FileName>
<Id>sample string 1</Id>
<ImagePath>sample string 2</ImagePath>
<IsDeleted>true</IsDeleted>
</JobImagesModel>
</JobImagesAndVideos>
<JobTask>
<JobTaskModel>
<DateFinding>2025-11-07T10:17:47.910512+08:00</DateFinding>
<DefectCount>5</DefectCount>
<Id>sample string 1</Id>
<IsCompleted>true</IsCompleted>
<Remarks>sample string 4</Remarks>
<TaskName>sample string 2</TaskName>
</JobTaskModel>
<JobTaskModel>
<DateFinding>2025-11-07T10:17:47.910512+08:00</DateFinding>
<DefectCount>5</DefectCount>
<Id>sample string 1</Id>
<IsCompleted>true</IsCompleted>
<Remarks>sample string 4</Remarks>
<TaskName>sample string 2</TaskName>
</JobTaskModel>
</JobTask>
</EditJobVacantCheckModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.