Questions tagged [voximplant]

82 questions
1
vote
1 answer

Use 'react-native-camera' with the app closed

It is possible to prevent 'react-native-camera' from unmounting when the application goes in foreground? I've used '@voximplant/react-native-foreground-service' to easily create a foreground service with success, but it seems that…
1
vote
1 answer

Add React native video/voice call

Will onsip support React Native? How to a add voice/video call feature in React Native App? I am trying with react-native-voximplant which requires classpath 'com.android.tools.build:gradle:3.0.+' and distributions/gradle-2.14.1-all.zip But it…
1
vote
1 answer

How to extend types definition with custom types?

I install this types. This file looks like this. But that types do not include some very helpfull types like ClientState. I want add to that types this enum: enum ClientState { DISCONNECTED, CONNECTING, …
sevaTechnoPark
  • 401
  • 1
  • 4
  • 3
1
vote
1 answer

undefined is not an object(inspecting voximplantModule) voximplant connection

The error at runtime shows in index.android.js in node-modules>react-native-voximplant. The file which is shown on there device on the red screen is index.android.js (the main file, the entry point) this.connect = function(){ …
Prakash
  • 396
  • 1
  • 6
  • 23
0
votes
0 answers

How to use voximplant supervision call in single scenario

So here I want to use supervision calls to find out the conversation that happens between client_call and operator_call in the same scenario. I'm a bit confused on how to capture multiple calls in the same scenario between supervisor_call and…
0
votes
1 answer

Why i am not receiving call in Voximplant?

I am trying to receive an incoming call from a user who is calling me but I am not getting any call from that user on the user side it's giving an error message that Cal Failed Reason: Not Found I am using Voximplant react native i have both the…
cwecae
  • 43
  • 1
  • 6
0
votes
0 answers

Mute Audio of a partcipant in group call based on userId (currentConference.current?.sendAudio(isMuted, userID))

We have a requirement where we need to mute audio for a certain section of users in our Conference call. Can we have something like currentConference.current?.sendAudio(isMuted, userID); instead of currentConference.current?.sendAudio(isMuted);
Manish Patiyal
  • 4,427
  • 5
  • 21
  • 35
0
votes
1 answer

Wake an app using firebase push notification in react native

I am trying to create a video calling app using react native for front-end and firebase with voximplant for back-end. I have been able to implement the video call in such a way that when there is an incoming call, the app will log the user in by…
0
votes
1 answer

Where can I find the Conversational Profile Link when integrating Dialogflow CX with Voximplant?

Currently I integrated an agent of Dialgoflow CX with Voximplant. I am having trouble adding an EventListener with CCAI.Conversation. It seems that I need to add the conversational profile link of Dialogflow CX, but I'm not sure where to find…
0
votes
1 answer

Recording a call in Voximplant

Can I record a call in Voximplant? And how can I get the transcription of the conversation? For example I want to receive a call and then mail the transcript to quality control service.
0
votes
1 answer

How long does it take Voximplant to detect a disconnected user?

I am testing losing connection in a Voximplant call. The Disconnected event fires after approximately one minute after losing connection. Can I adjust this value?
user19933337
0
votes
1 answer

How to make calls using a pool of phone numbers as caller IDs in Voximplant?

I want to make calls using a pool of phone numbers as caller IDs. I want my script to chose a random number of what I have and show it to my customers. Can I do this with Voximplant?
0
votes
1 answer

How to terminate Voximplant session correctly?

How do I terminate a Voximplant session after a call? Do I do this way: outgoing.addEventListener(CallEvents.Disconnected, VoxEngine.terminate); Or this way: VoxEngine.terminate.bind(VoxEngine)?
user19933337
0
votes
1 answer

Passing parameters directly to Dialogflow CX in Voximplant

I have a Voximplant application with Dialogflow CX integration. I want to pass parameters to Dialogflow CX directly, how do I do it?
user19933337
0
votes
1 answer

Voximplant – the callSIP method to call a phone number

I want to use the Voximplant's callSIP method to call a phone number. Is it possible? How do I specify a number to call in the VoxEngine.callSIP() method?