How to disable Cal confirmation email after booking #19215
Replies: 3 comments 4 replies
-
To disable the Cal booking confirmation email using the Cal atoms API, you can set the async function createOAuthClient(organizationId: number, emailsEnabled: boolean) {
const data = {
logo: "logo-url",
name: "name",
redirectUris: ["http://localhost:5555"],
permissions: 32,
areEmailsEnabled: emailsEnabled, // Set this to false to disable emails
};
const secret = "secret";
const client = await oauthClientRepositoryFixture.create(organizationId, data, secret);
return client;
} By setting To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
-
Where are the docs for it ? |
Beta Was this translation helpful? Give feedback.
-
Can you point me to the specific endpoint or where in the doc is it defined "on how to disable these emails" |
Beta Was this translation helpful? Give feedback.
-
Hi I am using Cal atoms and it's API. So as per our flow we send our own custom notification once the booking is done. My question is how do I disable the Cal booking confirmation email once the booking is done.
Is there any option in the API which I am missing?
Beta Was this translation helpful? Give feedback.
All reactions