DEVELOPER API. Last Updated: Simwood Mobile Developer API 1.5

Size: px
Start display at page:

Download "DEVELOPER API. Last Updated: 2015-11-04. Simwood Mobile Developer API 1.5"

Transcription

1 SIMWOOD MOBILE DEVELOPER API Last Updated:

2 WELCOME TO SIMWOOD MOBILE This is designed to be read in conjunction with our existing API documentation, the latest version of which can always be found at Simwood Mobile API Documentation 2 SIM Branding 3 SIM Ordering 5 SIM Management 8 SIM Configuration 10 SIM Configuration - Voice 11 SIM Configuration - SIP Registration 12 SIM Configuration - SMS 13 Mobile Data Configuration 14 Mobile Data Configuration - Static IP rdns 15 Mobile Data Balance 16 Purchasing Data Top-Ups 17 Managing Data Top-Ups 18 Mobile Data Usage (By SIM) 19 Message Waiting Indication (MWI) 20 Alerts and Notifications 21 Extended Main API Endpoints 22 Number Routing - Voice Configuration 22 Number Routing - Inbound SMS 23 Outbound SMS 24 Simwood SIP Interoperability 25 Outbound SIP (MT) 25 Inbound SIP (MO) 25 Notes and Caveats 26 Support 26 Document History 27 1

3 Simwood Mobile API Documentation Each endpoint is documented below in the following format; /v3/url Explains what happens when the method is used A sample response (in JSON) format may be shown in monospace type beneath each request, the variable names are usually self explanatory however some additional details may be provided. POST Describes a POST request which uses HTTP Form Field parameters parameter anotherparam An example HTTP Form Field parameter Another parameter to be sent by POST A sample response (in JSON) format may be shown in monospace type beneath each request, the variable names are usually self explanatory PUT Describes a PUT requiring JSON in the BODY of the request (not as HTTP Form Variables) JSON request json_parameter Describes this parameter, may give examples optional_json_parameter Optional parameters are shown in italics json_parameter": this is a test", optional_json_parameter : true JSON response "data": json_parameter": this is a test", optional_json_parameter : true Please Note - Where example responses are shown in this documentation they may be reformatted to be more easily human-readable, the actual response will have escaped slashes (e.g. / replaced with \/) and not include any excess white space unless queried with?pretty=true The following conventions are used in describing the URL and elsewhere in this document ACCOUNT Where a word is capitalised and enclosed by curly braces it must be replaced with the appropriate data e.g. ACCOUNT or ICCID [ on off ] Where two or more words are separated by the pipe character and enclosed within square brackets [ ] these are either or options. e.g.[ ] allows either 1,5 or would be invalid. URLs The URLs are shown without the leading paramname Parameters are shown in italics when referenced in the description, these are all passed in by JSON body requests and do not form part of the URI. Within the request specification, italics denote optional parameters. 2

4 SIM Branding SIMs can be supplied in any of your pre-defined brands, offering a true white-label solution. The branding of SIMs is managed via the API, enabling you to provide your own artwork for the printed SIM card, and network name for each brand which will be displayed on the handset. List Brands /v3/mvno/account/brands Retrieve a list of all available brands "data": "brands": [ brand : ACME, network_name : Acme Mobile, brand : FISH, network_name : Clownfish ] Modifying Brands /v3/mvno/account/brands/brand Get full details of BRAND "data": brand : ACME, network_name : Acme Mobile, sender_name : Acme Mobile Products, sender_address : 123 Some Street, Your Town, A12 3BC artwork : sim_front : sim_back : PUT Create new, or update existing, BRAND JSON request network_name The network name displayed on the handset (A-Z 0-9 only, max 19 chars) sp_name sender_name sender_address The service provider name displayed on the handset (A-Z 0-9 only, max 16 chars) The sender name shown on packaging The return address shown on packaging "data": brand : ACME, network_name : Acme Mobile, sender_name : Acme Mobile Products, sender_address : 123 Some Street, Your Town, A12 3BC DELETE Delete the specified BRAND NB Changing the network or service provider name of a brand will only affect NEW SIMs shipped for this brand. existing SIMs in service will continue to show the previous name. 3

5 SIM Artwork Each brand, defined above, has two images associated with it. Contact the Operations Desk, by to to provide new artwork for a brand. SIM Branding artwork must comply with the specification outlined in the Simwood Mobile Artwork Guide. This, and a number of templates for popular applications, are provided to assist in creating appropriate SIM artwork files. You can download this guide and templates from; 4

6 SIM Ordering You can order SIMs for direct delivery to your customers via the API. These will be charged in accordance with your pricing schedule, and may include a delivery charge. List Orders You can view your outstanding orders (and any orders completed in the last 30 days) /v3/mvno/account/orders Retrieve a list of outstanding or recent SIM orders "data": [ "order_id": ", ref : YOURREF03, "customer_name": John Doe", "customer_postcode": A12 3BC, quantity : 1, "status": "processing", date_placed : :30:04, date_updated : :23:06,, "order_id": "300494", ref : YOURREF04, "customer_name": Jane Doe", "customer_postcode": A12 3BC", "status": "received", quantity : 1, date_placed : :30:13, ] 5

7 Placing an Order SIM orders are charged in accordance with your pricing schedule, and may include a delivery charge. /v3/mvno/account/orders POST Place a new order for a SIM JSON request ref Your own unique reference for this order (optional, for your own reference only) brand A brand created as described above customer_name Customer Name for delivery customer_address Customer Address (address lines comma separated) customer_postcode Customer Postcode for delivery customer_country Customer ISO 3166 country code (use UK for United Kingdom) quantity Number of SIMs required in this order sim_type Reserved for future use, please use voice in all requests. JSON response "ref": YOURREF03", brand : ACME, "customer_name": "John Doe", "customer_address": "123 Some St, Some Town", "customer_postcode": "A12 3BC", customer_country": "UK", quantity : 1, sim_type : voice "data": order_id : S000675, ref": YOURREF03, NB If ordering a branding SIM It is imperative that artwork is approved before placing an order with a custom brand, otherwise a plain white SIM will be sent instead. 6

8 Get Order Status When an order is placed (see above) an order ID is returned, this can then be used to query the status of any outstanding order. Please note that this is a request only, the order cannot be changed. /v3/mvno/account/orders/order ID Retrieve information on an existing SIM order "data": "ref": YOURREF03", brand : ACME, "customer_name": "John Doe", "customer_address": "123 Some St, Some Town", "customer_postcode": "A12 3BC", customer_country": "UK", sim_type : voice, quantity : 1, status : fulfilled date_placed : :30:04, date_updated : :23:06, sims : [ ] An additional variable status is provided, which can be one of the following; status received processing fulfilled cancelled description Order has been received by Simwood and is awaiting processing Order is being processed by Simwood, and will be fulfilled shortly Order has been prepared for dispatch, and will be dispatched that day At this point sims will be present in the returned output. Order has been cancelled (see below) The sims variable will be present when an order has been fulfilled, this will show the ICCID(s) of the SIM(s) allocated to this order, to allow you to provision services before the customer receives their SIM card(s) Order Cancellation Orders placed in error, or whilst testing the API, can be cancelled whilst they are in the received state /v3/mvno/account/orders/order ID DELETE Cancel an existing SIM order NB Orders can be only cancelled before processing (e.g. if placed in error, or whilst testing) Once an order status is processing or fulfilled (see below) this function will return an error 7

9 SIM Management You can manage your SIMs via the API. The unique reference to identify the SIM is the ICCID (Integrated Circuit Card Identifier) which is printed on the SIM in both human and machine readable (Code 128 barcode) format. This number is also repeated on the back of the nano SIM. SIM Activation SIMs are shipped inactive, and must first be activated before they can be use. We recommend SIMs are shipped to your own customers inactive to protect you in the event of SIMs becoming lost in transit. Once active, deactivation of a SIM is permanent and is intended to be used where a SIM has been lost or stolen - NOT be used to temporarily disable a customer s service (e.g. for credit control), barring should be used for this purpose. Viewing your SIMs SIMs can be either active or pending. Active SIMs incur ongoing charges in accordance with your contract. Pending SIMs are those that have been shipped to you but are not yet active, and do not incur charges. /v3/mvno/account/sim/active Retrieve a list of all active SIMs, together with their labels if provided. "data": "sims": [ iccid : , iccid : , label : Ext 2034 ] /v3/mvno/account/sim/pending Retrieve a list of all SIMs assigned to your account that have not yet been activated "data": "sims": [ iccid : , iccid : , iccid : ] 8

10 SIM Activation and Configuration SIMs must be activated before use. A simple text label can also be assigned at this time to allow you to keep track of your SIMs. These labels are also visible in the portal. /v3/mvno/account/sim/active/iccid Request information on the SIM with the given ICCID For more information on the parameters in this object see SIM Configuration "data": "iccid": " ", "status": active, barred : false, label : My Test SIM, "pin": 1234, "pin2": 7892, "puk": , "puk2": , voice : /v3/mvno/930999/sim/active/ /voice, sms : /v3/mvno/930999/sim/active/ /sms, data : /v3/mvno/930999/sim/active/ /data, PUT Update the SIM or, if inactive, activate the SIM (and return the configuration as above) All parameters are optional, for activation you can just PUT a request to the endpoint. JSON request label An arbitrary label for this SIM, it will be displayed in the API and in the portal. Can contain the letters A-Z, a-z, digits 0-9, underscore, hyphen and space characters only. barred Set to true to temporarily block the SIM from using any network services (including Voice, SMS and Data). Setting false removes the bar. "label": Brian Test SIM" DELETE Permenantly deactivate the SIM. NB This renders the SIM useless, it cannot be reactivated. To disable a SIM temporarily (e.g. for credit control reasons) please use the barred attribute above. The default PIN and PIN2 along with the PUK and PUK2 codes are also returned by this endpoint. The PUK and PUK2 codes do not change, are unique to the SIM, and should be kept securely. The PUK is required to unblock the SIM should your end user forget their PIN and lock the SIM. The values for PIN and PIN2 are the initial values only and may be updated by the end user at any time. If the end user changes these, the new values are stored locally on the SIM and are not communicated to Simwood, therefore the response in the API will be invalid. 9

11 SIM Configuration SIMs can be configured in many ways to offer a wide degree of flexibility. Each facet of the mobile service; Voice, SMS and Data is managed via it s own API endpoint and can be configured in a variety of traffic profiles depending on your own application. Full information on the profiles can be found in the main documentation, but a summary is below; Profile API Name Description Managed managed SIM is treated like Simwood Trunk Voice SIP Handoff sip MO traffic terminated to you over SIP SIP Registration registration SIM registers as a SIP device would Hybrid hybrid as Managed, but short numbers (5 digits or less) are terminated over SIP. Managed managed SMS are terminated by Simwood SMS HTTP http MO SMS is delivered to you by HTTP Hybrid hybrid as Managed, but SMS to short numbers (5 digits or less) delivered over HTTP Managed (NAT) nat Internet access via Simwood. RFC1918 address on mobile device Data Managed (Fixed IP) fixed Internet access via Simwood. Public fixed IP on mobile device L2TP l2tp L2TP 10

12 SIM Configuration - Voice /v3/mvno/account/sim/active/iccid/voice Request current voice configuration for the provided ICCID The output can vary depending on mode used. See SIP Registration below for more info. "data": "mode": managed", trunk : MOBILE20 "data": "mode": sip", endpoint : %dialled%@sip.yourdomain.com:5080 PUT Update voice configuration for the provided ICCID JSON request mode one of [ managed sip registration hybrid ] NB for registration mode, see additional parameters below trunk endpoint Only where mode is managed This should contain the trunk name e.g MOBILE20 The trunk must already exist (can be created with the API) Only where mode is sip or hybrid A SIP Endpoint in the form user@host.com[:port] The placeholder %dialled will be replaced with the number dialled by the mobile device JSON response "mode": sip", endpoint : %dialled@sip.yourdomain.com:5080 "data": "mode": sip", endpoint : %dialled@sip.yourdomain.com:5080 DELETE Remove MO Voice configuration for the provided ICCID Important Information for SIP Handoff Where calls are handed off by SIP to your equipment you will need to terminate them onwards to the destination number. Some calls are excluded from SIP handoff, e.g. calls to 112, 911, 999 and will be terminated directly. We strongly advise using 4 digit numbers for internal calls where providing a PBX-style service on a mobile device to avoid conflict with reserved 3 digit service numbers such as those above. Default MO Voice Routing MO Voice routing can be configured to an account default so all new SIMs provisioned will behave identically. For more information, or to enable this on your account, please contact support. 11

13 SIM Configuration - SIP Registration SIMs can be configured to register using TCP to your own IP PBX much like any other SIP extension. Due to special network handling of numbers such as 112 we strongly advise using 4 digit extensions on your IP PBX or, if three digits must be used, numbers in the range /v3/mvno/account/sim/active/iccid/voice Request current voice configuration for the provided ICCID "data": "mode": registration, username : 2004, host : pbx.example.com:5060;transport=tcp, expires : 300, registered : true, reg_from : , registered_host : pbx.example.com, reg_expire : ;40:39 PUT Update voice configuration for the provided ICCID JSON request mode registration For other parameters see above username password host expires Only where mode is registration' The SIP username that should be used to register to your PBX Only where mode is registration' The password that is used to register to your PBX. Please note that due to the nature of SIP authentication this is stored in clear-text but is NOT returned in future API calls. We strongly advise using unique passwords for each SIP user and using passwords that are not used elsewhere. Only where mode is registration' The host, transport, and optional port, we should register to, e.g. pbx.example.com;transport=tcp pbx.example.com:5080;transport=tcp Only where mode is registration' Registration expiry time (in seconds) JSON response "mode": registration, username : 2004, password : YOUR-SIP-SECRET, host : pbx.example.com:5060;transport=tcp "data": "mode": registration, username : 2004, password : YOUR-SIP-SECRET, host : pbx.example.com:5060;transport=tcp DELETE Remove MO Voice configuration for the provided ICCID NB An active registration does not represent the SIMs status on the mobile network. All SIP registration must be using TCP only, UDP is not supported. 12

14 SIM Configuration - SMS /v3/mvno/account/sim/active/iccid/sms Request current MO SMS configuration for the provided ICCID "data": mode": managed, originator": " "data": "mode": http", endpoint : PUT Update voice configuration for the provided ICCID JSON request mode one of [ managed http ] endpoint originator Only where mode is http An HTTP URL that will receive a POST request for each SMS sent from this SIM. Only where mode is managed The originator (CLI) that will be shown on messages sent from the SIM JSON response "mode": http, endpoint : "data": "mode": http Managed SMS SMS messages are transmitted directly to the number they are addressed to, these will be charged at your standard SMS rates and visible in your outbound SMS CDRs. HTTP Interface The format of the received SMS messages is detailed below. Default MO SMS Routing MO Voice routing can be configured to an account default so all new SIMs provisioned will behave identically. For more information, or to enable this on your account, please contact support. 13

15 Mobile Data Configuration All Developer Preview SIMs ship with managed NAT mobile data enabled, this is a standard data service where your SIM has an RFC1918 non-routable IP assigned, and internet access is via NAT with our standard APN. You can manage the data usage per SIM as detailed below /v3/mvno/account/sim/active/iccid/data Request current data configuration for the provided ICCID "data": enabled : true, mode: nat, apn : sim.uk, balance : PUT Update data configuration for the provided ICCID JSON request mode one of [ nat fixed l2tp ] l2tp host relayhost relaypass Only where mode is l2tp Reserved for future use, this currently must be specified as the value direct in order to use L2TP Data Only where mode is l2tp The host (IP or FQDN) of the L2TP server Only where mode is l2tp The host/username recognised by the L2TP server for this SIM (note, this should not be confused with the host parameter itself) Only where mode is l2tp The password to be used for L2TP authentication JSON response "mode": fixed "data": enabled: true, mode : fixed, ip : , balance : NB When changing to fixed from any other mode, an ip address will be returned by the API. This is the static IP address allocated to that SIM. If a SIM is changed from fixed to another mode and then returned to fixed, it is likely that the IP address will differ. 14

16 Mobile Data Configuration - Static IP rdns The rdns (in-addr.arpa record) for any SIM with a static IP can be configured. If none is specified the default is the IP (with each octet separated by a hyphen) as a subdomain of mobile.simwood.com e.g the IP would have a default rdns entry of mobile.simwood.com /v3/mvno/account/sim/active/iccid/data/rdns Get the current rdns and IP of a SIM "data": ip: , rdns : mobile.simwood.com PUT Update data configuration for the provided ICCID JSON request rdns The FQDN for the PTR record, JSON response "rdns": mobile-21.example.net data": ip: , "rdns": "mobile-21.example.net" DELETE Restore the default rdns of the IP associated with the SIM (see above) NB Before configuring rdns on an IP address the FQDN to be used for rdns must resolve to the Simwood Mobile IP address. 15

17 Mobile Data Balance /v3/mvno/account/sim/active/iccid/data/balance Request current data balance (in bytes) for the provided ICCID "data": balance : NB Due to the limitations of the mobile network it is possible for a balance to drop slightly below 0 before the data session is terminated when credit is exhausted. Mobile Data Balance Alerts It is possible to set a per-sim alert level, you will receive a notification (configurable in the portal or via the Notifications API to be delivered by SMS, or HTTP POST) when the data balance drops below this pre-set level. This is in addition to the account-level alerts. /v3/mvno/account/sim/active/iccid/data/balance/alert Request the current data balance alert for the provided ICCID "data": alert_balance : PUT Update data alert configuration for the provided ICCID JSON request alert_balance Alert level (in bytes) JSON response alert_balance": "data": alert_balance : DELETE Remove the data balance alert for this ICCID 16

18 Purchasing Data Top-Ups Data must be assigned to a SIM before it can be used, doing so will charge your Simwood prepay account in accordance with your pricing schedule. Top-up Packages You can retrieve the top-up break points applicable to this SIM with the following API endpoint. /v3/mvno/account/sim/active/iccid/data/topups/available Retrieve available data top-up break points for this SIM JSON response "data": [ min_bytes : , price_per_mb : 0.040, min_bytes : , price_per_mb : ] Purchasing Data You may add any number of whole megabytes (multiple of bytes) to a SIM, which will be charged according to the breakpoints shown (e.g. in the above example bytes will cost 0.04 per megabyte, bytes and above will cost 0.03 per megabyte. If you have insufficient credit in your Simwood prepay account, this request will fail. /v3/mvno/account/sim/active/iccid/data/topups POST Purchase data for the provided ICCID JSON request bytes Increment data balance by the amount shown (in bytes). This must be a whole number of bytes in accordance with your pricing schedule. The amount allocated will affect pricing and expiry date. NB it is not possible to decrease the balance, and all data purchases are non-refundable, so consideration should be given in how credit is allocated to the SIM. JSON response "data": bytes_added : , billed : 0.05, expires : , balance : "success": false, "errors": [ Insufficient Credit ] 17

19 Managing Data Top-Ups Any top-ups that are still to be used can be queried, as can bundles which have been consumed or expired. This should allow you to manage top-ups for individual SIMs easily. These are updated daily so should not be used to determine the remaining data on an account ( see the /data/balance function, documented above ) /v3/mvno/account/sim/active/iccid/data/topups/valid Returns the currently valid purchased blocks of data for this ICCID as an array "data": [ date_added : , bytes_added : 3000, bytes_used : 1520, rate : 0.02, date_updated : , date_expires : , date_added : , bytes_added : 4000, bytes_used : 0, rate : 0.02, date_expires : ] /v3/mvno/account/sim/active/iccid/data/topups/used Returns any top-ups that were exhausted or expired in the last 30 days "data": [ date_added : , bytes_added : 7000, bytes_used : 5640, bytes_expired : 4940, rate : 0.02, date_expires : , date_added : , bytes_added : 3000, bytes_used : 3000, bytes_expired : 0, rate : 0.02, date_expires : ] 18

20 Mobile Data Usage (By SIM) You can view a daily summary of mobile data usage per ICCID. This is updated throughout the day, but is not as up-to-date as the data balance endpoint. /v3/mvno/account/sim/active/iccid/data/usage Get usage date_start Start date in format YYYY-MM-DD If not specified, defaults to today date_end End date in format YYYY-MM-DD If not specified, defaults to today "data": [ date : , bytes_in : , bytes_out : , date : , bytes_in : , bytes_out : ] An hourly view is also available (for the last 30 days only) /v3/mvno/account/sim/active/iccid/data/usage/hourly Get usage date Date in format YYYY-MM-DD If not specified, defaults to the current date "data": [ hour : 0, bytes_in : 0, bytes_out : 0, hour : 1, bytes_in : 2304, bytes_out : 24401, hour : 2, bytes_in : 4043, bytes_out : 32401, ] Hour is a value between 0 and 23. For the current day, only the hours passed will be returned e.g. a request at 1540 would return data for hours 0 through 14 inclusive. 19

21 Message Waiting Indication (MWI) It is possible to set and unset the MWI (Message Waiting Indicator) on most mobile handsets using the API. Most handsets will show this as a Voic icon in the status bar and some devices will generate a notification to the user (e.g. You have new Voic ) with an option to call the retrieval number. /v3/mvno/account/sim/active/iccid/mwi PUT DELETE Set the MWI Remove the MWI indication Voic Retrieval Number The voic retrieval number pre-programmed onto SIMs is 1571 At present this cannot be changed, therefore we would recommend you ensure you platform can connect calls to this number to your voic retrieval service. 20

22 Alerts and Notifications Data Balance You can configure alerts to be sent when any SIM s remaining data drops below a pre-determined level. The notification destination is configurable in the portal or via the Notifications API to be delivered by SMS, or HTTP POST. /v3/mvno/account/alerts/data Request the current data balance alert for the provided ICCID "data": alert_balance : PUT Update data alert configuration for the provided ICCID JSON request alert_balance Alert level (in bytes) JSON response alert_balance": "data": alert_balance : DELETE Remove the data balance alert for this ICCID 21

23 Extended Main API Endpoints Several API endpoints in our main API ( ) have been extended to include mobile functionality, these are detailed below Number Routing - Voice Configuration The conventional Number Routing Configuration endpoint is extended as below to add a new routing block - sim - which can be used alongside the existing options such as pstn, sip and reg. This enables you to terminate Simwood numbers (included geographic and NGNs) to your Simwood Mobile SIMs. type parameter sim iccid Mobile ICCID The ICCID in form 8944xxxxxxxxxxxxxxxx of a Simwood Mobile SIM which should receive calls. Example Configuration The Simwood number configuration API allows you to configure numbers and SIMs in many ways - there doesn t need to be a simple one-to-one relationship between a number and a SIM. For example; Send calls to two SIMs simultaneously "routing": "default": [ [ "type": "sim", "iccid": , "type": "sim", "iccid": " ] ] Call SIP registration user JOE, then call Simwood SIM "routing": "default": [ [ "type": "reg", "user": 93xxxx-JOE, timeout : 20 ], [ "type": "sim", "iccid": " ] ] 22

24 Number Routing - Inbound SMS UK Mobile Numbers will be able to receive SMS (this includes both MSISDNs obtained from Simwood, and SMS to numbers ported-in) - you can deliver these directly to a SIM or over HTTP to your own platform. /v3/numbers/account/allocated/number/sms Request current inbound SMS configuration for the provided number "data": mode": direct, iccid": 8944xxxxxxxxxxxxxxx" "data": "mode": http", endpoint : PUT Update SMS configuration for the provided mobile number JSON request mode one of [ direct http ] endpoint iccid Only where mode is http An HTTP URL that will receive a POST request for each SMS sent to this number. Only where mode is direct The ICCID of the SIM that should receive SMS to this number JSON response "mode": http, endpoint : "success": true DELETE Delete SMS configuration for this number 23

25 Outbound SMS The conventional outbound SMS endpoint is extended as below; /v3/messaging/account/sms POST Send an SMS Message to Recipient in e164 format (e.g ) or ICCID in form 8944xxxxxxxxxxxxxxxx from Originator number in e.164 format or alpha-numeric (maximum 11 characters if alphanumeric) message flash [optional] replace [optional] concat [optional] Plain text message to send Defaults to 0. If set to 1 message is sent as a flash message (i.e. it will be displayed on the phone screen but not stored in the recipient s inbox, subject to handset and network support) Defaults to 0. If set to 1 message is sent with an instruction to the handset to replace the previous. This must be set to 1 on both the original and replacement message. An integer defining the maximum number of SMS to send to deliver your message where it is too long for the normal 160 plain text character limit of a single SMS. The default value of 1 will truncate your message if it is longer than 160 characters unless you set this parameter to a higher value. If successful the message will be queued immediately and an id returned as follows; ["id":"02f150a cc9d0e89207d"] Please note that this differs from the response format of most mobile API calls, but is consistent with our existing SMS API. 24

26 Simwood SIP Interoperability This should be read in conjunction with our SIP Interoperability documentation which can be found here; Outbound SIP (MT) SIP Destination All calls should be sent in E164 format or as the ICCID to the hostname selected e.g.; Please note that prefixes (such as for rate deck selection) cannot be used when calling an ICCID. Caller ID When calling a Simwood Mobile SIM by ICCID some of our normal rules on Caller ID (CLI) are relaxed, notably you may present internal extensions (e.g. 305, 2120 etc) where these accurately represent the origin of the traffic. Good practice is you should only present a CLI that can be dialled back from the SIM When passing a call received from the PSTN onto a SIM the usual rules apply - Caller ID must be provided on all calls in E.164 format. The leading + should not be included in any E.164 CLI. Caller ID must be provided on all calls to Simwood Mobile SIMs, calls without a valid CLI will not complete. If you wish to withhold the number, you can do so using Remote-Party-ID / Privacy headers. Inbound SIP (MO) Calls from the Simwood Mobile SIM will be delivered to your platform to the URI specified with the %dialled part of the URI replaced by the number dialled from the handset. The from header will contain the ICCID of the calling SIM as the CLI, this should never be passed onwards to the PSTN or to another Simwood Mobile subscriber, but should be used to identify the calling SIM and allow you to map an appropriate CLI. The host in the From header will always be mo.mvno.simwood.com The traffic will originate from the same IPs and subnets detailed in our Standard Interoperability Information document which can be found at the above link. Short Numbers Some calls are excluded from SIP handoff, e.g. calls to 112, 911, 999 and will be terminated directly. We strongly advise using 4 digit numbers for internal calls where providing a PBX-style service on a mobile device to avoid conflict with reserved 3 digit service numbers such as those above. Dialled Numbers containing # and * Dialled numbers containing # and * will not be terminated. 25

27 Notes and Caveats Roaming Simwood Mobile SIMs are for use in the UK only and do not currently support international roaming SMS to Short Numbers SMS messages to shortcodes are currently unsupported. SMS Encoding Some issues may be experienced with encoding of SMS containing UTF-16BE characters (e.g. Emoji) Emergency Services Access (999/112) Calls to 999 / 112 will complete as dialled. These calls are terminated directly and you will not see this traffic as MO traffic to your platform, nor will you see CDRs for such calls. There is no requirement or facility to provide address information for mobile numbers, the callers location is inferred from information is provided by the radio access network operator. It is an offence to call 999/112 other than in the case of a genuine emergency. We would like to remind you that there is no provision in law for you to make test calls to the Emergency Services and such calls must not be made from your Simwood Mobile SIM Support If you require support for any issue with the Simwood Mobile API, or the service itself, please do not hesitate to raise a support ticket via the Support Portal or by ing our Operations Desk; Support Portal Operations Desk team@simwood.com When contacting the Operations Desk via ticket or , please include your Simwood Account number and as much information as possible regarding the issue you are experiencing. 26

28 Document History Date Revision Author RM Minor corrections RM Addition of L2TP Data Service RM Minor changes RM Initial public release 27

Clickatell Communicator2 Help Gui

Clickatell Communicator2 Help Gui Clickatell Communicator2 Help Gui February 2015 Contents Contents... 1 Overview... 3 Getting started... 3 4.1 Registering for a Communicator Account... 3 4.2 Changing your settings... 5 4.2.1 Contact Information...

More information

BlackBerry Mobile Voice System. Version: 5.3. Administration Guide

BlackBerry Mobile Voice System. Version: 5.3. Administration Guide BlackBerry Mobile Voice System Version: 5.3 Administration Guide Published: 2013-06-27 SWD-20130627112233808 Contents 1 Overview...7 2 Preparing to manage BlackBerry MVS user accounts... 8 3 Managing user

More information

Policy Based Encryption Z. Administrator Guide

Policy Based Encryption Z. Administrator Guide Policy Based Encryption Z Administrator Guide Policy Based Encryption Z Administrator Guide Documentation version: 1.2 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved.

More information

Configuring Avaya IP Office 500 for Spitfire SIP Trunks

Configuring Avaya IP Office 500 for Spitfire SIP Trunks Configuring Avaya IP Office 500 for Spitfire SIP Trunks This document is a guideline for configuring Spitfire SIP trunks onto Avaya IP Office 500 and includes the settings required for Inbound DDI routing

More information

Policy Based Encryption E. Administrator Guide

Policy Based Encryption E. Administrator Guide Policy Based Encryption E Administrator Guide Policy Based Encryption E Administrator Guide Documentation version: 1.2 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved.

More information

Policy Based Encryption E. Administrator Guide

Policy Based Encryption E. Administrator Guide Policy Based Encryption E Administrator Guide Policy Based Encryption E Administrator Guide Documentation version: 1.2 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved.

More information

Sipstream Hosted PBX Supervisor Guide. Sipstream Hosted PBX Supervisor Guide

Sipstream Hosted PBX Supervisor Guide. Sipstream Hosted PBX Supervisor Guide Sipstream Hosted PBX Supervisor Guide 2 Table of Contents Getting Started... 4 Basic Concepts... 4 Pre-requisites... 5 The Supervisor Homepage... 8 Extension Management... 12 Add a New Extension and Associated

More information

Intermedia Cloud Softphone. User Guide

Intermedia Cloud Softphone. User Guide Intermedia Cloud Softphone User Guide FOR MORE INFO VISIT: CALL US EMAIL US intermedia.net +1.800.379.7729 sales@intermedia.net 1 Contents 1 Introduction... 3 1.1 Cloud Softphone Features... 3 2 Installation...

More information

NAT TCP SIP ALG Support

NAT TCP SIP ALG Support The feature allows embedded messages of the Session Initiation Protocol (SIP) passing through a device that is configured with Network Address Translation (NAT) to be translated and encoded back to the

More information

Application Note Configuring the Synapse SB67070 SIP Gateway for Broadvox GO! SIP Trunking

Application Note Configuring the Synapse SB67070 SIP Gateway for Broadvox GO! SIP Trunking Configuring the Synapse SB67070 SIP Gateway for Broadvox GO! SIP Trunking 2012 Advanced American Telephones. All Rights Reserved. AT&T and the AT&T logo are trademarks of AT&T Intellectual Property licensed

More information

CREATE A CUSTOMER... 2 SIP TRUNK ACCOUNTS...

CREATE A CUSTOMER... 2 SIP TRUNK ACCOUNTS... Contents CREATE A CUSTOMER... 2 SIP TRUNK ACCOUNTS... 3 CREATE THE MAIN SIP TRUNK ACCOUNT... 3 SETUP THE SIP TRUNK ACCOUNT... 4 EXTRA DIDS... 7 HOW TO..... 9 BILL FOR THE SIP TRUNKING SERVICE... 9 LIMIT

More information

3CX PHONE SYSTEM CUSTOMER CONFIGURATION ADVICE. Configuring for Integra Telecom SIP Solutions

3CX PHONE SYSTEM CUSTOMER CONFIGURATION ADVICE. Configuring for Integra Telecom SIP Solutions 3CX PHONE SYSTEM CUSTOMER CONFIGURATION ADVICE Configuring for Integra Telecom SIP Solutions BACKGROUND This document provides guidance for configuring the 3CX Phone System to properly interface to and

More information

SIP Trunking Quick Reference Document

SIP Trunking Quick Reference Document SIP Trunking Quick Reference Document Publication Information SAMSUNG TELECOMMUNICATIONS AMERICA reserves the right without prior notice to revise information in this publication for any reason. SAMSUNG

More information

LifeSize Transit Deployment Guide June 2011

LifeSize Transit Deployment Guide June 2011 LifeSize Transit Deployment Guide June 2011 LifeSize Tranist Server LifeSize Transit Client LifeSize Transit Deployment Guide 2 Firewall and NAT Traversal with LifeSize Transit Firewalls and Network Address

More information

Using the NetVanta 7100 Series

Using the NetVanta 7100 Series MENU OK CANCEL 1 2 3 4 5 6 7 8 9 * 0 # MENU MENU OK CANCEL CANCEL 1 2 3 4 5 6 7 8 9 * 0 # MENU OK CANCEL CANCEL 1 2 3 4 5 6 7 8 9 * 0 # MENU OK CANCEL CANCEL 1 2 3 4 5 6 7 8 9 * 0 # MENU OK CANCEL 1 2

More information

New and updated functions

New and updated functions Gigaset S675 IP, S685 IP, C470 IP, C475 IP: New and updated functions This document is a supplement to the user guide for the following Gigaset VoIP phones: Gigaset C470 IP, Gigaset C475 IP, Gigaset S675

More information

Call Recording for Mobile Phones

Call Recording for Mobile Phones Call Recording for Mobile Phones FSA regulations are changing in November 2011. For FSA regulated companies, mobile phone calls are no longer exempt from the call recording regs and the implementation

More information

LifeSize UVC Access Deployment Guide

LifeSize UVC Access Deployment Guide LifeSize UVC Access Deployment Guide November 2013 LifeSize UVC Access Deployment Guide 2 LifeSize UVC Access LifeSize UVC Access is a standalone H.323 gatekeeper that provides services such as address

More information

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0

Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0 Abstract These Application Notes describe the procedures for configuring

More information

Feature and Technical

Feature and Technical BlackBerry Mobile Voice System for SIP Gateways and the Avaya Aura Session Manager Version: 5.3 Feature and Technical Overview Published: 2013-06-19 SWD-20130619135120555 Contents 1 Overview...4 2 Features...5

More information

Xorcom IP-PBX Software Features

Xorcom IP-PBX Software Features Xorcom IP-PBX Software s Based on the Elastix Asterisk i distribution, Xorcom s entire family of IP-PBX appliances provide all the standard telephone functionality supported by Asterisk at no extra cost,

More information

SIP Trunking Application Notes V1.3

SIP Trunking Application Notes V1.3 SIP Trunking Application Notes V1.3 Publication Information SAMSUNG TELECOMMUNICATIONS AMERICA reserves the right without prior notice to revise information in this publication for any reason. SAMSUNG

More information

Direct IP Calls. Quick IP Call Mode

Direct IP Calls. Quick IP Call Mode Unicorn3112 Tips Direct IP Calls...1 Quick IP Call Mode...1 PSTN Pass Through...2 VoIP-to-PSTN Calls...2 PSTN-to-VoIP Calls...3 Route Calls to PSTN...4 Forward Calls to PSTN...4 Forward Calls to VoIP...4

More information

ADTRAN SBC and Cisco Unified Call Manager SIP Trunk Interoperability

ADTRAN SBC and Cisco Unified Call Manager SIP Trunk Interoperability 6AOSSG0004-42A April 2013 Interoperability Guide ADTRAN SBC and Cisco Unified Call Manager SIP Trunk Interoperability This guide describes an example configuration used in testing the interoperability

More information

Configuration BCP Skype for Business

Configuration BCP Skype for Business Configuring Skype for Business using Grandstream CPE Devices Thank you for your interest in configuring Grandstream s SIP devices for Skype s SIP Trunking Service. This document describes the basic configuration

More information

SIP Trunking using the Optimum Business SIP Trunk adaptor and the AltiGen Max1000 IP PBX version 6.7

SIP Trunking using the Optimum Business SIP Trunk adaptor and the AltiGen Max1000 IP PBX version 6.7 SIP Trunking using the Optimum Business SIP Trunk adaptor and the AltiGen Max1000 IP PBX version 6.7 Goal The purpose of this configuration guide is to describe the steps needed to configure the AltiGen

More information

Manual 3CX Phone System for Windows Version 6.0

Manual 3CX Phone System for Windows Version 6.0 Manual 3CX Phone System for Windows Version 6.0 Copyright 2006-2008, 3CX ltd. http://www.3cx.com E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names

More information

How To Set Up A Scopdial On A Pc Or Macbook Or Ipod (For A Pc) With A Cell Phone (For Macbook) With An Ipod Or Ipo (For An Ipo) With Your Cell Phone Or

How To Set Up A Scopdial On A Pc Or Macbook Or Ipod (For A Pc) With A Cell Phone (For Macbook) With An Ipod Or Ipo (For An Ipo) With Your Cell Phone Or SCOPSERV DIALER USER DOCUMENTATION Last updated on : 2014-11-18 Installation Step 1: You must agree to the License terms and conditions before you can install ScopDial. Step 2: You can select the features

More information

Telco Depot IP-PBX Software Features

Telco Depot IP-PBX Software Features Telco Depot IP-PBX Software Features Based on the Elastix Asterisk distribution, Telco Depot s entire family of IP-PBX appliances provide all the standard telephone functionality supported by Asterisk

More information

Technical Manual 3CX Phone System for Windows

Technical Manual 3CX Phone System for Windows Technical Manual 3CX Phone System for Windows This technical manual is intended for those who wish to troubleshoot issues encountered with implementing 3CX Phone System. It is not intended to replace the

More information

1.1.3 Versions Verified SIP Carrier status as of 18 Sep 2014 : validated on CIC 4.0 SU6.

1.1.3 Versions Verified SIP Carrier status as of 18 Sep 2014 : validated on CIC 4.0 SU6. 1 SIP Carriers 1.1 Telstra 1.1.1 Warnings Check the SIP 3 rd Party SIP Carrier Matrix for certification status, and supported features. More info about the SIP 3 rd Party SIP Carrier Matrix can be found

More information

Quick Start Guide v1.0

Quick Start Guide v1.0 Quick Start Guide v1.0 Table of contents : 01. Quick Start Guide...03 O2. Configuring your VoIPOffice appliance...14 03. Adding a VoIPtalk trunk...21 04. Configuring UADs for use with VoIPOffice...25 05.

More information

UX5000 with CommPartners SIP Trunks

UX5000 with CommPartners SIP Trunks UX5000 with CommPartners SIP Trunks SECTION 1 NEC S UX5000 AND CommPartners SETUP GUIDE This guide provides example entries for the required fields. The actual data will be e- mailed to you in the following

More information

Welltel IP PBX features. Our Handy a-z guide

Welltel IP PBX features. Our Handy a-z guide Welltel IP PBX features Our Handy a-z guide IP PBX FEATURES our handy A - Z Guide Analogue Support Supports analogue gateways to connect fax machines or credit card machines. ANI Routing Routes calls to

More information

ADTRAN SBC and Avaya IP Office PBX SIP Trunk Interoperability

ADTRAN SBC and Avaya IP Office PBX SIP Trunk Interoperability 6AOSSG001-42B March 2014 Interoperability Guide ADTRAN SBC and Avaya IP Office PBX SIP Trunk Interoperability This guide describes an example configuration used in testing the interoperability of an ADTRAN

More information

CompleteSBC: Getting Started Guide

CompleteSBC: Getting Started Guide CompleteSBC: Getting Started Guide Default CompleteSBC Configuration CompleteSBC (SBC) is pre-configured to perform the following actions: registration caching limiting the number of concurrent calls via

More information

Application Notes for Configuring Cablevision Optimum Voice SIP Trunking with Avaya IP Office - Issue 1.1

Application Notes for Configuring Cablevision Optimum Voice SIP Trunking with Avaya IP Office - Issue 1.1 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Cablevision Optimum Voice SIP Trunking with Avaya IP Office - Issue 1.1 Abstract These Application Notes describe the procedures

More information

nexvortex Setup Guide

nexvortex Setup Guide nexvortex Setup Guide CISCO UC500 March 2012 Introduction This document is intended only for nexvortex customers and resellers as an aid to setting up the Cisco PBX software to connect to the nexvortex

More information

User Manual. 3CX VOIP client / Soft phone Version 6.0

User Manual. 3CX VOIP client / Soft phone Version 6.0 User Manual 3CX VOIP client / Soft phone Version 6.0 Copyright 2006-2008, 3CX ltd. http:// E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data

More information

Motorola TEAM WSM - Cisco Unified Communications Manager Integration

Motorola TEAM WSM - Cisco Unified Communications Manager Integration Motorola TEAM WSM - Cisco Unified Communications Manager Integration Summary This setup covers the of the TEAM VoWLAN solution with a Cisco Unified Communications Manager 7.1.2. This integration will be

More information

Enswitch Administrator Guide

Enswitch Administrator Guide Enswitch Administrator Guide July 2012 Enswitch Administrator Guide 1 Contents 1 Introduction... 5 1.1 The Purpose of this Document...5 1.2 Features...5 1.3 Workflows...5 2 User Enrollment... 6 3 User

More information

Mobile SMS and Data Roaming Explained

Mobile SMS and Data Roaming Explained Mobile SMS and Data Roaming Explained Mobile SMS and data roaming explained Roaming is the ability of customers to use their mobile phones or other mobile devices outside the geographical coverage area

More information

VOIP-211RS/210RS/220RS/440S. SIP VoIP Router. User s Guide

VOIP-211RS/210RS/220RS/440S. SIP VoIP Router. User s Guide VOIP-211RS/210RS/220RS/440S SIP VoIP Router User s Guide Trademarks Contents are subject to revise without prior notice. All trademarks belong to their respective owners. FCC Warning This equipment has

More information

Application Notes for Avaya IP Office 7.0 Integration with Skype Connect R2.0 Issue 1.0

Application Notes for Avaya IP Office 7.0 Integration with Skype Connect R2.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Avaya IP Office 7.0 Integration with Skype Connect R2.0 Issue 1.0 Abstract These Application Notes describe the steps to configure an Avaya

More information

EZLoop IP-PBX Enterprise SIP Server

EZLoop IP-PBX Enterprise SIP Server EZLoop IP-PBX Enterprise SIP Server Copyright 2007 Teletronics International, Inc. 2 Choke Cherry Road, Rockville, MD 20850 sales@teletronics.com www.teletronics.com CH1. Overview...4 1.1 Specifications...4

More information

SIP Proxy Server. Administrator Installation and Configuration Guide. V2.31b. 09SIPXM.SY2.31b.EN3

SIP Proxy Server. Administrator Installation and Configuration Guide. V2.31b. 09SIPXM.SY2.31b.EN3 SIP Proxy Server Administrator Installation and Configuration Guide V2.31b 09SIPXM.SY2.31b.EN3 DSG, DSG logo, InterPBX, InterServer, Blaze Series, VG5000, VG7000, IP590, IP580, IP500, IP510, InterConsole,

More information

Avaya IP Office Platform Web Self Administration

Avaya IP Office Platform Web Self Administration Avaya IP Office Platform Web Self Administration Release 9.1 Issue 01.02 August 2015 Contents Chapter 1: Avaya IP Office Platform Web Self Administration... 3 Logging in to Web Self Administration... 3

More information

Time Warner ITSP Setup Guide

Time Warner ITSP Setup Guide October 14 Time Warner ITSP Setup Guide Author: Zultys Technical Support This configuration guide was created to assist knowledgeable vendors with configuring the Zultys MX Phone System with Time Warner

More information

Manual. 3CX Phone System for Windows Version 7.0

Manual. 3CX Phone System for Windows Version 7.0 Manual 3CX Phone System for Windows Version 7.0 Copyright 2006-2008, 3CX ltd. http:// E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data used

More information

Background 1 Table 1 Software & Firmware Versions Tested 1 Figure 1 Integra s Universal Access (UA) IP PBX Test Configuration 1

Background 1 Table 1 Software & Firmware Versions Tested 1 Figure 1 Integra s Universal Access (UA) IP PBX Test Configuration 1 1 Background 1 Table 1 Software & Firmware Versions Tested 1 Figure 1 Integra s Universal Access (UA) IP PBX Test Configuration 1 Configuration Data 2 Section 1: Initial IPitomy IP PBX Connection & Login

More information

Application Notes for Configuring Avaya IP Office 9.0 with HIPCOM SIP Trunk Issue 1.0

Application Notes for Configuring Avaya IP Office 9.0 with HIPCOM SIP Trunk Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Avaya IP Office 9.0 with HIPCOM SIP Trunk Issue 1.0 Abstract These Application Notes describe the procedures for configuring

More information

Setup Guide: on the MyNetFone Service. Revision History

Setup Guide: on the MyNetFone Service. Revision History Setup Guide: on the MyNetFone Service Revision History Version Author Revision Description Release Date 1.0 Sampson So Initial Draft 02/01/2008 2.0 Sampson So Update 27/09/2011 1 Table of Contents Introduction...

More information

Juniper Secure Analytics

Juniper Secure Analytics Juniper Secure Analytics Big Data Management Guide Release 2014.2 Published: 2014-08-12 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All

More information

Application Notes for Configuring Intelepeer SIP Trunking with Avaya IP Office 7.0 - Issue 1.0

Application Notes for Configuring Intelepeer SIP Trunking with Avaya IP Office 7.0 - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Intelepeer SIP Trunking with Avaya IP Office 7.0 - Issue 1.0 Abstract These Application Notes describe the procedures for configuring

More information

Configurator Administrators Guide

Configurator Administrators Guide Configurator Administrators Guide Table of Contents 1 Introduction and Definitions...1 2 Users...5 2.1 Users...5 2.1.1 Viewing Users...5 2.1.2 Adding a User...5 2.1.3 Editing a User...7 2.1.4 Add User

More information

IP Office Technical Tip

IP Office Technical Tip IP Office Technical Tip Tip no: 188 Release Date: September 27, 2007 Region: GLOBAL Verifying IP Office SIP Trunk Operation IP Office back-to-back SIP Line testing IP Office Release 4.0 supports SIP trunking.

More information

nexvortex Setup Guide

nexvortex Setup Guide nexvortex Setup Guide CUDATEL COMMUNICATION SERVER September 2012 510 S P R I N G S T R E E T H E R N D O N V A 2 0 1 7 0 + 1 8 5 5. 6 3 9. 8 8 8 8 Introduction This document is intended only for nexvortex

More information

LifeSize UVC Multipoint Deployment Guide

LifeSize UVC Multipoint Deployment Guide LifeSize UVC Multipoint Deployment Guide May 2014 LifeSize UVC Multipoint Deployment Guide 2 LifeSize UVC Multipoint LifeSize UVC Multipoint is a software MCU optimized for conferences that mix high definition

More information

Manual 3CX Phone System for Windows Version 5.1

Manual 3CX Phone System for Windows Version 5.1 Manual 3CX Phone System for Windows Version 5.1 Copyright 2006-2008, 3CX ltd. http:// E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data used

More information

Quick Start Guide: Iridium GO! Advanced Portal

Quick Start Guide: Iridium GO! Advanced Portal Quick Start Guide: Iridium GO! Advanced Portal Contents Set-Up... 3 Overview... 4 Main Tab 1: General... 5 Status.... 5 Settings... 8 Audio.... 8 GPS.... 9 Tab 2: Communication... 9 Wi-Fi... 9 Satellite...

More information

Acano solution. Third Party Call Control Guide. March 2015 76-1055-01-E

Acano solution. Third Party Call Control Guide. March 2015 76-1055-01-E Acano solution Third Party Call Control Guide March 2015 76-1055-01-E Contents Contents 1 Introduction... 3 1.1 How to Use this Guide... 3 1.1.1 Commands... 4 2 Example of Configuring a SIP Trunk to CUCM...

More information

Juniper Secure Analytics

Juniper Secure Analytics Juniper Secure Analytics Big Data Management Guide Release 2014.1 Published: 2014-03-17 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide PRI Gateway Version 2.4 Table of Contents Hardware Setup... 1 Accessing the WEB GUI... 2 Notification LEDs (On the Front Panel of the Gateway)... 3 Creating SIP Trunks... 4 Creating

More information

Kaseya 2. User Guide. Version 1.0

Kaseya 2. User Guide. Version 1.0 Kaseya 2 Mobile Device Management User Guide Version 1.0 March 12, 2012 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.

More information

SIP Trunking using the EdgeMarc Network Services Gateway and the Mitel 3300 ICP IP-PBX

SIP Trunking using the EdgeMarc Network Services Gateway and the Mitel 3300 ICP IP-PBX June 26th, 2014 SIP Trunking using the EdgeMarc Network Services Gateway and the Mitel 3300 ICP IP-PBX Page 1 of 30 Table of Contents 1 Overview... 3 2 Prerequisites... 3 3 Network Topology... 4 4 Description

More information

SIP Trunking Service Configuration Guide for Skype

SIP Trunking Service Configuration Guide for Skype SIP Trunking Service Configuration Guide for Skype NDA-31154 Issue 1.0 NEC Corporation of America reserves the right to change the specifications, functions, or features at any time without notice. NEC

More information

Brekeke PBX Version 2 User Guide Brekeke Software, Inc.

Brekeke PBX Version 2 User Guide Brekeke Software, Inc. Brekeke PBX Version 2 User Guide Brekeke Software, Inc. Version Brekeke PBX Version 2 User Guide Revised October 2010 Copyright This document is copyrighted by Brekeke Software, Inc. Copyright 2010 Brekeke

More information

3CX Guide sip.orbtalk.co.uk

3CX Guide sip.orbtalk.co.uk 3CX Guide sip.orbtalk.co.uk Table of Contents 1. Outbound Dialling 2. Inbound Routing 3. Outbound CLI 4. Additional Network Configuration 1. Outbound dialling: The Customer will have been provided with

More information

Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc.

Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc. Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc. Version Brekeke PBX Version 3 Administrator s Guide (Basic) Copyright This document is copyrighted by Brekeke Software, Inc. Copyright

More information

Grandstream Networks, Inc. UCM6100 Security Manual

Grandstream Networks, Inc. UCM6100 Security Manual Grandstream Networks, Inc. UCM6100 Security Manual Index Table of Contents OVERVIEW... 3 WEB UI ACCESS... 4 UCM6100 HTTP SERVER ACCESS... 4 PROTOCOL TYPE... 4 USER LOGIN... 4 LOGIN TIMEOUT... 5 TWO-LEVEL

More information

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide BlackBerry Enterprise Service 10 Universal Service Version: 10.2 Administration Guide Published: 2015-02-24 SWD-20150223125016631 Contents 1 Introduction...9 About this guide...10 What is BlackBerry

More information

nexvortex Setup Template

nexvortex Setup Template nexvortex Setup Template ZULTYS, INC. April 2013 5 1 0 S P R I N G S T R E E T H E R N D O N V A 2 0 1 7 0 + 1 8 5 5. 6 3 9. 8 8 8 8 Introduction This document is intended only for nexvortex customers

More information

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax:

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax: FaxFinder FFx30 T.37 Store & Forward Fax (T.37) Introduction The FaxFinder implements T.37 Store and Forward Fax (RFC2304) to convert emails into facsimile transmissions. The FaxFinder fax server accepts

More information

Application Notes for Microsoft Office Communicator Clients with Avaya Communication Manager Phones - Issue 1.1

Application Notes for Microsoft Office Communicator Clients with Avaya Communication Manager Phones - Issue 1.1 Avaya Solution & Interoperability Test Lab Application Notes for Microsoft Office Communicator Clients with Avaya Communication Manager Phones - Issue 1.1 Abstract These Application Notes describe the

More information

Manual. 3CX Phone System for Windows Version 9.0

Manual. 3CX Phone System for Windows Version 9.0 Manual 3CX Phone System for Windows Version 9.0 Copyright 2006-2010, 3CX ltd. http:// E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data used

More information

Using FreePBX with Twilio Elastic SIP Trunking

Using FreePBX with Twilio Elastic SIP Trunking Using FreePBX with Twilio Elastic SIP Trunking FreePBX works great with Twilio! We support it, it is what many of us use. There are a few tricks, especially for Origination, that are documented here, that

More information

ACCELERATOR 6.3 ASTERISK 1.4 INTEGRATION GUIDE

ACCELERATOR 6.3 ASTERISK 1.4 INTEGRATION GUIDE ACCELERATOR 6.3 ASTERISK 1.4 INTEGRATION GUIDE October 2014 Tango Networks, Inc. phone: +1 469-229-6000 3801 Parkwood Blvd, Suite 500 fax: +1 469-467-9840 Frisco, Texas 75034 USA www.tango-networks.com

More information

Manual POLICY PATROL SECURE FILE TRANSFER

Manual POLICY PATROL SECURE FILE TRANSFER Manual POLICY PATROL SECURE FILE TRANSFER MANUAL Policy Patrol Secure File Transfer This manual, and the software described in this manual, are copyrighted. No part of this manual or the described software

More information

OfficeMaster Gate (Virtual) Enterprise Session Border Controller for Microsoft Lync Server. Quick Start Guide

OfficeMaster Gate (Virtual) Enterprise Session Border Controller for Microsoft Lync Server. Quick Start Guide OfficeMaster Gate (Virtual) Enterprise Session Border Controller for Microsoft Lync Server Quick Start Guide October 2013 Copyright and Legal Notice. All rights reserved. No part of this document may be

More information

Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc.

Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc. Brekeke PBX Version 3 Administrator's Guide (Basic) Brekeke Software, Inc. Version Brekeke PBX Version 3 Administrator s Guide (Basic) Copyright This document is copyrighted by Brekeke Software, Inc. Copyright

More information

MAX Communication Server Release 7.5

MAX Communication Server Release 7.5 MAX Communication Server Release 7.5 Polycom IP Phone Configuration Guide Intended audience: AltiGen Authorized Partners September 30, 2014 Contents Introduction... 3 Prerequisites... 3 Supported Polycom

More information

Extension Manual User portal, Dial codes & Voice mail for 3CX Phone System Version 6.0

Extension Manual User portal, Dial codes & Voice mail for 3CX Phone System Version 6.0 Extension Manual User portal, Dial codes & Voice mail for 3CX Phone System Version 6.0 Copyright 2006-2008, 3CX ltd. http://www.3cx.com E-mail: info@3cx.com Information in this document is subject to change

More information

ACCELERATOR 6.3 ASTERISK LINES INTEGRATION GUIDE

ACCELERATOR 6.3 ASTERISK LINES INTEGRATION GUIDE ACCELERATOR 6.3 ASTERISK LINES INTEGRATION GUIDE January 2014 Tango Networks, Inc. phone: +1 469-229-6000 3801 Parkwood Blvd, Suite 500 fax: +1 469-467-9840 Frisco, Texas 75034 USA www.tango-networks.com

More information

Manual. 3CX Phone System for Windows Version 7.0

Manual. 3CX Phone System for Windows Version 7.0 Manual 3CX Phone System for Windows Version 7.0 Copyright 2006-2008, 3CX ltd. http:// E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data used

More information

Provisioning and configuring the SIP Spider

Provisioning and configuring the SIP Spider Provisioning and configuring the SIP Spider Administrator Guide Table of Contents 1. Introduction... 3 2. Manual Provisioning... 4 3. Automatic Provisioning... 5 3.1 Concept... 5 3.2 Preparing the configuration

More information

AT&T Voice DNA User Guide

AT&T Voice DNA User Guide AT&T Voice DNA User Guide Page 1 Table of Contents GET STARTED... 4 Log In... 5 About the User Dashboard... 9 Manage Personal Profile... 15 Manage Messages... 17 View and Use Call Logs... 22 Search the

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring SIP Trunking Using Verizon Business IP Contact Center VoIP Inbound and Avaya IP Office Release 8 with Avaya Session Border Controller

More information

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger. System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4

More information

SIP Trunking using Optimum Business Sip Trunk Adaptor and the Zultys MX250 IP PBX

SIP Trunking using Optimum Business Sip Trunk Adaptor and the Zultys MX250 IP PBX SIP Trunking using Optimum Business Sip Trunk Adaptor and the Zultys MX250 IP PBX Table of Contents Goal 3 Prerequisites 3 Zultys MX250 Configuration 4 Network Settings 4 Phone Registration and Assignment

More information

MultiSite Manager. User Guide

MultiSite Manager. User Guide MultiSite Manager User Guide Contents 1. Getting Started... 2 Opening the MultiSite Manager... 2 Navigating MultiSite Manager... 2 2. The All Sites tabs... 3 All Sites... 3 Reports... 4 Licenses... 5 3.

More information

Configuring Mitel 3300 for Spitfire SIP Trunks

Configuring Mitel 3300 for Spitfire SIP Trunks Configuring Mitel 3300 for Spitfire SIP Trunks This document is a guideline for configuring Spitfire SIP trunks onto Mitel 3300 and includes the settings required for Inbound DDI routing and Outbound CLI

More information

New and updated functions

New and updated functions Gigaset S675 IP, S685 IP, C470 IP, C475 IP: New and updated functions This document is a supplement to the user guide for the following Gigaset VoIP phones: Gigaset C470 IP, Gigaset C475 IP, Gigaset S675

More information

AudioCodes Mediant 1000 Configuration Guide

AudioCodes Mediant 1000 Configuration Guide AudioCodes Mediant 1000 Configuration Guide 2010 FaxBack, Inc. All Rights Reserved. NET SatisFAXtion and other FaxBack products, brands and trademarks are property of FaxBack, Inc. Other products, brands

More information

Hosted VoIP Phone System. Desktop Toolbar User Guide

Hosted VoIP Phone System. Desktop Toolbar User Guide Hosted VoIP Phone System Desktop Toolbar User Guide Contents 1 Introduction... 3 1.1 System Requirements... 3 2 Installing the Telesystem Hosted VoIP Toolbar... 4 3 Accessing the Hosted VoIP Toolbar...

More information

Vega 100G and Vega 200G Gamma Config Guide

Vega 100G and Vega 200G Gamma Config Guide Vega 100G and Vega 200G Gamma Config Guide This document aims to go through the steps necessary to configure the Vega SBC to be used with a Gamma SIP Trunk. When a SIP trunk is provisioned by Gamma a list

More information

Corporate Telephony Toolbar User Guide

Corporate Telephony Toolbar User Guide Corporate Telephony Toolbar User Guide 1 Table of Contents 1 Introduction...6 1.1 About Corporate Telephony Toolbar... 6 1.2 About This Guide... 6 1.3 Accessing The Toolbar... 6 1.4 First Time Login...

More information

Avaya IP Office 8.1 Configuration Guide

Avaya IP Office 8.1 Configuration Guide Avaya IP Office 8.1 Configuration Guide Performed By tekvizion PVS, Inc. Contact: 214-242-5900 www.tekvizion.com Revision: 1.1 Date: 10/14/2013 Copyright 2013 by tekvizion PVS, Inc. All Rights Reserved.

More information

DX800. DX800 A all in one. A all in one GIGASET. INSPIRING CONVERSATION.

DX800. DX800 A all in one. A all in one GIGASET. INSPIRING CONVERSATION. DX800 A all in one A all in one DX800 GIGASET. INSPIRING CONVERSATION. Web configurator Setting the phone using a PC The Web configurator is the Web interface for your phone. It allows you to select the

More information

SIN 413 Issue 2.0 May 2004

SIN 413 Issue 2.0 May 2004 SIN 413 Issue 2.0 May 2004 Suppliers' Information Note For The BT Network Fixed Line SMS Service Service Description and Interface Specification Each SIN is the copyright of British Telecommunications

More information