Skip to content

Instantly share code, notes, and snippets.

@psanders
Created July 3, 2021 13:32
Show Gist options
  • Save psanders/2941a99757d73051428b9f2052426136 to your computer and use it in GitHub Desktop.
Save psanders/2941a99757d73051428b9f2052426136 to your computer and use it in GitHub Desktop.
Cloud Function Example
const Fonos = require("@fonos/sdk");
const callManager = new Fonos.CallManager();
// 🚀 Let's get started
// Use fonos funcs:deploy to send to the cloud functions
module.exports = async(request, response) => {
await callManager.call({
from: "9842753589",
to: "17853178070",
webhook: "https://5a2d2ea5d84d.ngrok.io"
})
return response.succeed("OK");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment