Applications

  1. Overview
  2. List applications
  3. Get a single application

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

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.  

Flow restriction

This endpoint cannot be accessed with Client Credentials Flow.

List applications

List all installed applications for a given account.

GET /applications

Response

{
  "applications": [
    {
      "id": 65,
      "name": "Airbnb"
    }
  ],
  "meta": {
  }
}

Get a single application

Returns a single application identified by ID.

GET /applications/:application_id

Response

{
  "applications": [
    {
      "id": 65,
      "name": "Airbnb"
    }
  ],
  "meta": {
  }
}