GET delivery/getDeliveryPayments?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DeliveryPaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryId | integer |
None. |
|
| Id | integer |
None. |
|
| Summ | decimal number |
None. |
|
| DateCreated | string |
None. |
|
| CreatedBy | integer |
None. |
|
| Comment | string |
None. |
|
| FullName | string |
None. |
|
| IsNewRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"deliveryId": 1,
"id": 1,
"summ": 1.0,
"dateCreated": "sample string 2",
"createdBy": 3,
"comment": "sample string 4",
"fullName": "sample string 5",
"isNewRecord": true
},
{
"deliveryId": 1,
"id": 1,
"summ": 1.0,
"dateCreated": "sample string 2",
"createdBy": 3,
"comment": "sample string 4",
"fullName": "sample string 5",
"isNewRecord": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDeliveryPaymentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Clickoapp2.Shared.ViewModels">
<DeliveryPaymentModel>
<Comment>sample string 4</Comment>
<CreatedBy>3</CreatedBy>
<DateCreated>sample string 2</DateCreated>
<DeliveryId>1</DeliveryId>
<FullName>sample string 5</FullName>
<Id>1</Id>
<IsNewRecord>true</IsNewRecord>
<Summ>1</Summ>
</DeliveryPaymentModel>
<DeliveryPaymentModel>
<Comment>sample string 4</Comment>
<CreatedBy>3</CreatedBy>
<DateCreated>sample string 2</DateCreated>
<DeliveryId>1</DeliveryId>
<FullName>sample string 5</FullName>
<Id>1</Id>
<IsNewRecord>true</IsNewRecord>
<Summ>1</Summ>
</DeliveryPaymentModel>
</ArrayOfDeliveryPaymentModel>