Operation
Get a list of all the products of type payment in a given property.
Rw ui textbox macro | ||
---|---|---|
| ||
Only accessible with permission of pms.integration.product |
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}/payment |
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. | |
offset | Integer | false0 | request parameter | Offset of the array of results. | |
limit | Integer | false10 | request parameter | Limit of results. | |
sort | string | falseid | request parameter | Property of the entity to sort by. | |
sortMode | string | falseAsc | request parameter | Mode of sorting. |
Example request
Code Block | ||||
---|---|---|---|---|
| ||||
GET https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/property/1/payment |
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true | Description of the response of the success operation |
Entity
The entity returned is a Page with a list of Payment's. Description of the Accommodation entity:Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Example response
Code Block | ||
---|---|---|
| ||
{ "count": 10, "offset": 0, "limit": 3, "list": [ { "id": 1, "name": "Cash" }, { "id": 2, "name": "MasterCard" }, { "id": 3, "name": "Transfer" } ] } |