We update our bookings with information from Airtable via API calls. I need to block the confirmation of change that is automatically send after this adjustment, but I still need these confirmations to be send after manually updating a booking. How can I block this confirmation email for API calls only? I found AdminNotificationSettingsEntity but the path seems non-existent.
Hi, if you are using admin JSON-RPC API, there is an undocumented flag you can use - pass additional.skip_notifications = true to editBook() call - that will suppress client notification (but not the provider one).
Unfortunately it is not supported in the REST API yet.
The entity you’ve found is used for managing users’ push notification settings - not useful for your case.
Will this help you, or do you need something different?