Advertisement
Guest User

bruh123

a guest
Feb 28th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. const Nexmo = require('nexmo')
  2.  
  3. const nexmo = new Nexmo({
  4. apiKey: "37eb1ba8",
  5. apiSecret: "Cf59xZoOCYJIS7UX",
  6. applicationId: "c2856074-0c50-4e10-a956-77fad7ba2eae",
  7. });
  8.  
  9.  
  10. nexmo.calls.create({
  11. to: [{
  12. type: 'phone',
  13. number: "8583023300"
  14. }],
  15. from: {
  16. type: 'phone',
  17. number: "8382030311"
  18. },
  19. answer_url: ["https://google.com"]
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement