This endpoint represents information about the current application and the associated account, including information about the invoice recipient.
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 /me
{
"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"
}
}