Applications
Overview
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.
Parameters
- OAuth Scopes:
- applications_read
- applications_write
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 |
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 |
Flow restriction
This endpoint cannot be accessed with Client Credentials Flow.
List applications
List all installed applications for a given account.
GET /applications
- OAuth Scopes:
- applications_read
response.json
{
"applications": [
{
"id": 65,
"name": "Airbnb"
}
],
"meta": {}
}
Get a single application
Returns a single application identified by ID.
GET /applications/:application_id
- OAuth Scopes:
- applications_read
response.json
{
"applications": [
{
"id": 65,
"name": "Airbnb"
}
],
"meta": {}
}