This resource represents the installed Applications for the Account(s) via OAuth - these are the actual applications that you, as a Partner, can register in Partners Section.
Name | Type | Read/Write | Description |
---|---|---|---|
id | Integer | Read | Application’s id. |
name | String | Read | Application’s name. |
default_price_increase | Decimal | Read | Application’s default price increase for Bookings originating from a given Application. Also, this increase is reflected in Rates and LOS Records |
created_at | Time | Read | Applications’s create time. |
updated_at | Time | Read | Applications’s update time. |
Name | Type | Read/Write | Description | Constraints |
---|---|---|---|---|
id | Integer | Read | Application’s id. | |
name | String | Read | Application’s name. | |
default_price_increase | Decimal | Read/Write | Application’s default price increase for Bookings originating from a given Application. Also, this increase is reflected in Rates and LOS Records | greater than: 0, less than: 100 |
created_at | Time | Read | Application’s create time. | |
updated_at | Time | Read | Application’s update time. |
This endpoint cannot be accessed with Client Credentials Flow.
List all installed applications for a given account.
GET /applications
{
"applications": [
{
"id": 65,
"name": "Airbnb"
}
],
"meta": {
}
}
Returns a single application identified by ID.
GET /applications/:application_id
{
"applications": [
{
"id": 65,
"name": "Airbnb"
}
],
"meta": {
}
}