Skip to main content

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

NameTypeRead/WriteDescriptionConstraints
idIntegerReadApplication's id
nameStringReadApplication's name
default_price_increaseDecimalRead/WriteApplication's default price increase for Bookings originating from a given Application. Also, this increase is reflected in Rates and LOS Recordsgreater than: 0, less than: 100
created_atTimeReadApplication's create time
updated_atTimeReadApplication'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
response.json
{
"applications": [
{
"id": 65,
"name": "Airbnb"
}
],
"meta": {}
}

Get a single application

Returns a single application identified by ID.

GET /applications/:application_id
response.json
{
"applications": [
{
"id": 65,
"name": "Airbnb"
}
],
"meta": {}
}