GET api/ProductGallery/TransferPermissionLog?ProductId={ProductId}&CurrentPage={CurrentPage}&RowPerPage={RowPerPage}&ProductDemandId={ProductDemandId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | integer |
Required |
|
| CurrentPage | integer |
Required |
|
| RowPerPage | integer |
Required |
|
| ProductDemandId | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of TransferPermissionLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
None. |
|
| EmployeeOld | string |
None. |
|
| EmployeeNew | string |
None. |
|
| DateCreate | date |
None. |
|
| EmployeeAction | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"description": "sample string 2",
"employeeOld": "sample string 3",
"employeeNew": "sample string 4",
"dateCreate": "2025-12-06T12:28:48.2620262+07:00",
"employeeAction": "sample string 5"
},
{
"id": 1,
"description": "sample string 2",
"employeeOld": "sample string 3",
"employeeNew": "sample string 4",
"dateCreate": "2025-12-06T12:28:48.2620262+07:00",
"employeeAction": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfTransferPermissionLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Product">
<TransferPermissionLogModel>
<DateCreate>2025-12-06T12:28:48.2620262+07:00</DateCreate>
<Description>sample string 2</Description>
<EmployeeAction>sample string 5</EmployeeAction>
<EmployeeNew>sample string 4</EmployeeNew>
<EmployeeOld>sample string 3</EmployeeOld>
<Id>1</Id>
</TransferPermissionLogModel>
<TransferPermissionLogModel>
<DateCreate>2025-12-06T12:28:48.2620262+07:00</DateCreate>
<Description>sample string 2</Description>
<EmployeeAction>sample string 5</EmployeeAction>
<EmployeeNew>sample string 4</EmployeeNew>
<EmployeeOld>sample string 3</EmployeeOld>
<Id>1</Id>
</TransferPermissionLogModel>
</ArrayOfTransferPermissionLogModel>