Search found 14 matches

by ashergibson
Wed Apr 10, 2024 7:34 am
Forum: Channel Management
Topic: Connecting to properties as an OTA
Replies: 1
Views: 268

Re: Connecting to properties as an OTA

Hello,

An invite code generated by the property is indeed how you would access it via API V2.

Best regards,

Asher.
by ashergibson
Wed Apr 10, 2024 7:32 am
Forum: API
Topic: Error with Invite Code
Replies: 1
Views: 260

Re: Error with Invite Code

Hello,

Invite codes can only be used once and are only valid for 15 minutes after being generated, are you using it within this timeframe?

Best regards,

Asher.
by ashergibson
Mon Apr 08, 2024 1:34 pm
Forum: Feature Requests
Topic: Messages webhook
Replies: 2
Views: 4328

Re: Messages webhook

Hello,

You may be interested in API V2 booking webhooks, which should trigger upon a message being received: https://wiki.beds24.com/index.php/Booking_Webhooks

Best regards,
Asher.
by ashergibson
Fri Apr 05, 2024 8:12 am
Forum: API
Topic: Price and Price Rules
Replies: 3
Views: 305

Re: Price and Price Rules

Hello, It looks like there were no available offers based on the parameters you set, if you try different dates you may be able to get some valid offers. E.g. I tried this query with your account and received some offers in response: GET /inventory/rooms/offers?arrival=2024-04-05&departure=2024-04-1...
by ashergibson
Tue Apr 02, 2024 9:34 am
Forum: API
Topic: Price and Price Rules
Replies: 3
Views: 305

Re: Price and Price Rules

Hello,

The API equivalent to the price check tool is the inventory/rooms/offers endpoint. The inventory/rooms/calendar endpoint retrieves values set in your calendar and may be different from the price check tool depending on your setup.

Best regards,
Asher.
by ashergibson
Thu Mar 14, 2024 3:28 pm
Forum: Bookings and Guests
Topic: Xero Account - default setting for bookings revenue
Replies: 7
Views: 35832

Re: Xero Account - default setting for bookings revenue

When creating a new booking we use the "send to Xero" button for invoicing. The current default shows the Xero code table from the top, which then needs "scroll + click" to set the correct accounting code. This is required for each item (room, extras, voucher code). Everything coming to Xero from B...
by ashergibson
Wed Mar 13, 2024 10:39 am
Forum: Bookings and Guests
Topic: Xero Account - default setting for bookings revenue
Replies: 7
Views: 35832

Re: Xero Account - default setting for bookings revenue

Hello,

Thank you for your suggestion as well.
If we add tracking codes, would you want the ability to set different line items to different tracking categories, or just one tracking category per invoice?

Best regards,
Asher.
by ashergibson
Thu Feb 22, 2024 4:41 am
Forum: Bookings and Guests
Topic: Xero Account - default setting for bookings revenue
Replies: 7
Views: 35832

Re: Xero Account - default setting for bookings revenue

Hello,

Thank you for your suggestion, we will look into adding this feature.

Best regards,
Asher.
by ashergibson
Mon Sep 26, 2022 8:30 am
Forum: API
Topic: API Version 2.0 - how to use the scope 'channels'
Replies: 1
Views: 8705

Re: API Version 2.0 - how to use the scope 'channels'

The "channels" scope is for the currently under development channels endpoints found here: https://beds24.com/api/v2/#/Channels%20-%20Airbnb/post_channels_airbnb These API endpoints will allow you to interact with channels like Airbnb programmatically, however the initial connection step where the u...
by ashergibson
Mon Sep 26, 2022 2:51 am
Forum: API
Topic: API Version 2.0 - how to use the invite code with GET /authentication/setup
Replies: 1
Views: 8747

Re: API Version 2.0 - how to use the invite code with GET /authentication/setup

Hi,

The invite code should be in a header called "code" like this:

curl -X 'GET' \
'https://beds24.com/api/v2/authentication/setup' \
-H 'accept: application/json' \
-H 'code: 123'

You can try it here https://beds24.com/api/v2/#/Authenticat ... tion_setup