Operation
This endpoint returns a list of payments contained in folios and invoices filtered by a date range.
Rw ui textbox macro | ||
---|---|---|
| ||
Only accessible with permission of pms.integration.billing |
Style |
---|
table { width: 100%; } body.page-gadget { padding-top: 20px; } .separator{ margin: 5px 0; } |
Div | ||
---|---|---|
| ||
GET |
Div | ||
---|---|---|
| ||
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/billingPayment |
Request
Property | Type | Required | Type parameter | Default value | Description |
---|---|---|---|---|---|
chainId | Integer | true | path parameter | Unique identificator of the chain. | |
propertyId | Integer | true | path parameter | Unique identificator of the property. | |
from | LocalDate | true | request parameter | Start of date range | |
to | LocalDate | true | request parameter | End of date range |
Example request
Code Block | ||||
---|---|---|---|---|
| ||||
GET https://prod.ulysescloud.com/api/v1/chain/1/property/1/billingPayment |
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true |
Entity
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Example response
Code Block | ||
---|---|---|
| ||
[{ "id": 8, "sequence": 23, "productionDate": "2019-04-30", "postingDate": "2019-04-30", "payment": { "id": 453, "name": "Visa" }, "quantity": 1, "amount": 357, "currency": { "id": 1, "code": "EUR", "name": "Euro" }, "folio": null, "invoice": { "id": 3, "invoiceSerie": "A15", "invoiceNumber": 100002, "invoiceDate": "2019-04-23", "company": null, "customer": { "id": 213, "name": "Emily Maëlann Andrews" }, "travelAgent": null, "holderName": "Emily Maëlann Andrews", "taxId": null, "address": null, "city": null, "stateProv": null, "postalCode": null, "stateProvNamecountryCode": null, "stateProvCoderemark": null, "postalCodeproductList": null }, "paymentReceipt": { "id": 1, "countryCodename": null"test", "remark": null, "price": 150.000000, "currency": { "id": 1, "code": "EUR", "name": "Euro", "nameI18n": "Euro", "symbol": "€", "decimalPlaces": 2 }, "merchant": "112903902", "productListoperation": null"Payment" } }] |