GET api/TrungTamKhachHang/getHoSoGanMoi?SoHoSo={SoHoSo}&checksum={checksum}
Lấy thông tin tiến trình xử lý hồ sơ gắn mới
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SoHoSo | string |
Required |
|
| checksum | string |
Required |
Body Parameters
None.
Response Information
Resource Description
HoSoGanMoi| Name | Description | Type | Additional information |
|---|---|---|---|
| SoHoSo |
Số hồ sơ |
string |
None. |
| LoaiHoSo |
Loại hồ sơ |
string |
None. |
| HoTen |
Họ tên khách hàng |
string |
None. |
| DiaChi |
Địa chỉ |
string |
None. |
| CreateDate |
Ngày nhận |
date |
None. |
| lstGhiChu |
Tiến trình |
Collection of GhiChu |
None. |
Response Formats
application/json, text/json
Sample:
{
"SoHoSo": "sample string 1",
"LoaiHoSo": "sample string 2",
"HoTen": "sample string 3",
"DiaChi": "sample string 4",
"CreateDate": "2025-11-05T22:23:17.2362704+07:00",
"lstGhiChu": [
{
"NoiDung": "sample string 1",
"CreateDate": "2025-11-05T22:23:17.2362704+07:00"
},
{
"NoiDung": "sample string 1",
"CreateDate": "2025-11-05T22:23:17.2362704+07:00"
}
]
}
text/xml
Sample:
<HoSoGanMoi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WSTanHoa.Models">
<CreateDate>2025-11-05T22:23:17.2362704+07:00</CreateDate>
<DiaChi>sample string 4</DiaChi>
<HoTen>sample string 3</HoTen>
<LoaiHoSo>sample string 2</LoaiHoSo>
<SoHoSo>sample string 1</SoHoSo>
<lstGhiChu>
<GhiChu>
<CreateDate>2025-11-05T22:23:17.2362704+07:00</CreateDate>
<NoiDung>sample string 1</NoiDung>
</GhiChu>
<GhiChu>
<CreateDate>2025-11-05T22:23:17.2362704+07:00</CreateDate>
<NoiDung>sample string 1</NoiDung>
</GhiChu>
</lstGhiChu>
</HoSoGanMoi>