GET api/ProductPickup/GetSupplierPayments?productPickupId={productPickupId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| productPickupId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SupplierPaymentDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| SupplierId | integer |
None. |
|
| SupplierName | string |
None. |
|
| Amount | decimal number |
None. |
|
| IsPaid | boolean |
None. |
|
| PaidDate | date |
None. |
|
| MappingCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "3b4fa4fa-c203-4dea-9432-962be888378c",
"SupplierId": 2,
"SupplierName": "sample string 3",
"Amount": 4.0,
"IsPaid": true,
"PaidDate": "2026-04-14T21:53:21.2478937+07:00",
"MappingCount": 6
},
{
"Id": "3b4fa4fa-c203-4dea-9432-962be888378c",
"SupplierId": 2,
"SupplierName": "sample string 3",
"Amount": 4.0,
"IsPaid": true,
"PaidDate": "2026-04-14T21:53:21.2478937+07:00",
"MappingCount": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfSupplierPaymentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Dto">
<SupplierPaymentDto>
<Amount>4</Amount>
<Id>3b4fa4fa-c203-4dea-9432-962be888378c</Id>
<IsPaid>true</IsPaid>
<MappingCount>6</MappingCount>
<PaidDate>2026-04-14T21:53:21.2478937+07:00</PaidDate>
<SupplierId>2</SupplierId>
<SupplierName>sample string 3</SupplierName>
</SupplierPaymentDto>
<SupplierPaymentDto>
<Amount>4</Amount>
<Id>3b4fa4fa-c203-4dea-9432-962be888378c</Id>
<IsPaid>true</IsPaid>
<MappingCount>6</MappingCount>
<PaidDate>2026-04-14T21:53:21.2478937+07:00</PaidDate>
<SupplierId>2</SupplierId>
<SupplierName>sample string 3</SupplierName>
</SupplierPaymentDto>
</ArrayOfSupplierPaymentDto>