Me

  1. Overview
  2. Get information about current accounts application

Overview

This endpoint represents information about the current application and the associated account, including information about the invoice recipient.

Parameters

Name Type Read/Write Description
account Integer Read ID of an Account for which application is now authorized.
partnership_invoice_recipient String Read Describes who should be invoiced for a partnership service. List of options described in enums section.

Get information about current accounts application

GET /me

Response

{
  "links": {
    "accounts_applications.account": "https://www.bookingsync.com/api/v3/accounts/{accounts_applications.account}"
  },
  "accounts_applications": [
    {
      "links": {
        "account": 1
      },
      "partnership_invoice_recipient": "account"
    }
  ],
  "meta": {
    "Link": {
      "first": "https://www.bookingsync.com/api/v3/me?page=1",
      "last": "https://www.bookingsync.com/api/v3/me?page=1"
    },
    "X-Per-Page": "100",
    "X-Total-Count": "1",
    "X-Total-Pages": "1"
  }
}