Rate this page:

SIP calls and registrations

Here you can learn about how to process incoming and outgoing SIP calls.

Contents

Copy URL

How to call a 3rd-party PBX

Copy URL

In the scenario, use the callSIP method to call a SIP address. Take a look at the scenario example to understand how it works.

UDP/TCP transport

Voximplant uses UDP as the default protocol for SIP calls. If you want to use the TCP protocol, specify it in the callSIP method as shown below in the code example

Scenario example

Scenario example

To enable TLS support for your SIP calls, change the sip: prefix of your address to the sips: prefix or simply specify the TLS transport type. See the code example:

Enable TLS for SIP calls

Enable TLS for SIP calls

Please note

If you want to make sip calls from web or mobile SDKs, specify the SIP address in the first parameter of the call() method in your application. You can retreive this value in the e.destination property in your scenario.

How to receive calls from a 3rd-party PBX

Copy URL

To receive calls in a Voximplant application, you need to whitelist your PBX domain's IP address in the control panel.

Note

Whitelist the IP address, not the domain name. For example, if your 3rd party PBX is Linphone, whitelist 79.104.38.102 instead of sip.linphone.org

After that, you can call your Voximplant application from the whitelisted PBX via one of the following address formats:

  • destination@application.account.voximplant.com

  • app_id#account_id#destination@sip.voximplant.com

After you start a call in your SIP PBX, you receive this call in the specified application. Create a proper routing rule to match the destination field of the address.

The destination field of the address is processed by your scenario and can be retrieved the e.destination property of the incoming call object.

You can pass a username to this field if you want to call a specific user, or you can pass any string value to this field, retreive it from the e.destination property, and process in your scenario logic further.

Refer to the voice calls guide or video calls guide to learn how to process incoming audio or video call in the application.

Warning

You cannot accept incoming SIP-calls from the voximplant.com domain. Learn how to call a Voximplant user via the platform.

How to use 3rd party SIP software with Voximplant

Copy URL

To authorize in a 3rd party SIP application (such as Linphone or Jitsi), you need to create an application, and create a user in the control panel first.

Then open your 3rd party SIP software and add a new SIP account. Use your user as account username, and the domain part of your application as SIP domain.

You can specify UDP/TCP transport, or specify TLS transport to secure your connection.

Authorize in a 3rd party application

After you sign in, you can make audio and video calls from your 3rd party SIP application.

How to work with SIP registrations

Copy URL

SIP registration is a feature that allows Voximplant to behave like a third party PBX softphone. This allows you to forward calls from your PBX to Voximplant easily without performing complicated trunk configuration.

Create a SIP registration

You can create and manage SIP registrations via the control panel or Management API.

During creation, you need to specify at least the following parameters:

  • proxy – your provider's SIP proxy address. You can add a port number if it is different from the standard 5060 port, e.g. sip.provider.org. By default, Voximplant uses the UDP transport. If you need to use TCP, just add ;transport=tcp to the proxy address. So in the most complicated case, this field contains something like sip.provider.org:5090;transport=tcp

  • username – the user name, e.g. user12302

  • password – the password that was given to you by your provider

Also, some providers require to specify outgoing proxy and auth user parameters, but most of the providers do not need that.

Pricing

Please note that you pay for SIP registrations monthly according to our price list. So if you create a SIP registration and delete it immediately, your account is charged for the SIP registration monthly fee.

SIP registration statuses

In the control panel, you can see the status of each registration. There are currently 3 possible statuses:

  1. Successful – the registration was performed successfully
  2. In progress – Voximplant is about to initiate the registration that has been recently created or modified. Usually, the provisioning process takes up to 2 minutes
  3. Failed – Voximplant attempted to perform SIP registration but it was not successful. Usually, it is a result of some SIP error returned by the SIP proxy. You can obtain the status code and message in the information tooltip in the control panel.

When a SIP registration status changes from Successful to Failed and vice versa, you get a email notification to the contact email addresses and the HTTP callback invokes. You can learn more about HTTP callbacks in this article.

How to make calls with SIP registration

To make a call with a SIP registration you need to pass the regId parameter to the VoxEngine.callSIP function. You can find the registration id in the SIP registration list in the control panel, or in the GetSipRegistrations and CreateSipRegistration functions' response. Usually, you need to specify only the username/number of the called party.

Configure a SIP registration

To process incoming calls to Voximplant, you need to attach a SIP registration to an application (in the SIP Registrations section of an application menu) and select the desired routing rule that handles the calls. Please note that you do not need to configure the rule pattern in this case — the rule works for all the calls to this SIP registration.

Frequently asked questions

Copy URL

Q: Can I create a SIP account on the Voximplant platform?
A: Voximplant users can act as SIP accounts. Use the username as the user part of the SIP address, and the application address as a domain part of your SIP address. For example: user@application.account.voximplant.com