NETMESSENGER API EXAMPLES
|
|
|
- Arnold Frederick Hutchinson
- 10 years ago
- Views:
Transcription
1 NETMESSENGER API EXAMPLES
2 The following pages contain sample code we have produced to assist you in building FASTSMS functionality into your development environment. We are always adding new items to both our API s and our examples library so for the latest versions please visit our website s resource area or access the latest examples via your Netmessenger account. Login on the following URL; Currently this document supplies example code for the following; PHP ASP XML If you have any other requirement or would like to feedback to us your ideas or comments please us at [email protected] or call and speak to one of our operators. PHP API Examples Note: All of these examples use the api_connect() function (within these examples). URL: Sending a message with the API <?php // Create Parameter Array unset($parameters); $Parameters['Action']="Send"; $Parameters['DestinationAddress']=" "; $Parameters['SourceAddress']="System"; $Parameters['Body']="This is a test message";
3 $Parameters['ValidityPeriod']="86400"; // Call api_connect() function $resultcode=api_connect("myusername", $Parameters); "MyPassword", if ($resultcode>0) echo "Message ID is: ".$resultcode; else echo "An error occurred. ID: ".$resultcode;?> Checking Your Credit Level <?php // Create Parameter Array unset($parameters); $Parameters['Action']="CheckCredits"; // Call api_connect() function $resultcode=api_connect("myusername", $Parameters); "MyPassword", if (is_numeric($resultcode) && $resultcode<0) echo "An error occurred. ID: ".$resultcode; else echo "Current Credit Level: ".$resultcode;?>
4 Checking the status of a message <?php // Create Parameter Array $Parameters['Action']="CheckMessageStatus"; $Parameters['MessageID']= ; // Call api_connect() function $resultcode=api_connect("myusername", $Parameters); "MyPassword", Running a report if (is_numeric($resultcode) && $resultcode<0) echo "An error occurred. ID: ".$resultcode; else echo "Message Status is: ".$resultcode;?> <?php // Create Parameter Array unset($parameters); $Parameters['Action']="Report"; // Possible report types are: Outbox, Messages and Usage $Parameters['ReportType']="Messages"; // From and To timestamps are in the format YYYYMMDDHHMMSS $Parameters['From']=" "; $Parameters['To']=" "; // Call api_connect() function $reportbody=api_connect("myusername", $Parameters); "MyPassword", if (is_numeric($reportbody) && $reportbody<0)
5 Creating a User (admin only) echo "An error occurred. ID: ".$reportbody; else echo "Report Follows:\n".$reportBody;?> <?php // Create Parameter Array unset($parameters); $Parameters['Action']="CreateUser"; $Parameters['ChildUsername']="user023321"; $Parameters['ChildPassword']="securePassword"; // Access Level : Normal or Admin $Parameters['AccessLevel']="Normal"; $Parameters['Name']="Customer Name"; $Parameters[' ']="customer@ address.com"; // How many credits do we give this user initially? $Parameters['Credits']="30"; // Call api_connect() function $resultcode=api_connect("myusername", $Parameters); if ($resultcode>0) echo "User created"; else echo "An error occurred. ID: ".$resultcode;?> "MyPassword",
6 Managing User Credits (admin only) <?php // Create Parameter Array $Parameters['Action']="UpdateCredits"; $Parameters['ChildUsername']="user023321"; // Give the user 10 credits. You can also use -10 // to remove credits from a user. $Parameters['Quantity']=10; // Call api_connect() function $resultcode=api_connect("myusername", $Parameters); "MyPassword", api_connect function if (is_numeric($resultcode) && $resultcode<0) echo "An error occurred. Code: ".$resultcode; else echo "Credits Transferred";?> <?php // api connect function function api_connect($username, $Password, $ParameterArray) // Create the URL to send the message. // The variables are set using the input from an HTML form $err = array(); $url = "api.fastsms.co.uk"; $headers = "POST /api/api.php HTTP/1.0\r\n"; $headers.= "Host: ".$url."\r\n"; // Create post string // Username and Password
7 $poststring = "Username=".$Username."&"; $poststring.= "Password=".$Password; // Turn the parameter array into the variables while (list($key, $Value)=@each($ParameterArray)) $poststring.= "&".$Key."=".urlencode($Value); // Finish off the headers $headers.= "Content-Length: ".strlen($poststring)."\r\n"; $headers.= "Content-Type: application/x-www-formurlencoded\r\n"; // Open a socket $http = fsockopen ($url, 80, $err[0], $err[1]); if (!$http) echo "Connection to ".$url.":80 failed: ".$err[0]." (".$err[1].")"; exit(); // Socket was open successfully, post the data. fwrite ($http, $headers."\r\n".$poststring."\r\n"); // Read the results from the post $result = ""; while (!feof($http)) $result.= fread($http, 8192); // Close the connection fclose ($http);
8 Example HTML form and PHP code for sending a message // Strip the headers from the result list($resultheaders, $resultcode)=split("\r\n\r\n", $result, 2); return $resultcode;?> <?php $header=<<<eot <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>Send a Message</TITLE> </HEAD> <BODY> EOT; $footer="</body></html>"; if ($_GET['Action']=="Send") // api connect function (Note: For a live application you may) // wish to place this function in a separate file and include it // here) function api_connect($username, $Password, $ParameterArray) // Create the URL to send the message. // The variables are set using the input from an HTML form $err = array(); $url = "api.fastsms.co.uk"; $headers = "POST /api/api.php HTTP/1.0\r\n"; $headers.= "Host: ".$url."\r\n"; // Create post string // Username and Password $poststring = "Username=".$Username."&";
9 $poststring.= "Password=".$Password; // Turn the parameter array into the variables while (list($key, $poststring.= "&".$Key."=".urlencode($Value); // Finish off the headers $headers.= "Content-Length: ".strlen($poststring)."\r\n"; $headers.= "Content-Type: application/x-www-formurlencoded\r\n"; // Open a socket $http = fsockopen ($url, 80, $err[0], $err[1]); if (!$http) echo "Connection to ".$url.":80 failed: ".$err[0]." (".$err[1].")"; exit(); // Socket was open successfully, post the data. fwrite ($http, $headers."\r\n".$poststring."\r\n"); // Read the results from the post $result = ""; while (!feof($http)) $result.= fread($http, 8192); // Close the connection fclose ($http); // Strip the headers from the result
10 list($resultheaders, $resultcode)=split("\r\n\r\n", $result, 2); return $resultcode; // Verify that the parameters are correct $errormessage=""; if (empty($_get['destinationaddress'])!is_numeric($_get['destinationaddress'])) $errormessage.="invalid Destination Address<br>"; if (empty($_get['sourceaddress']) (!is_numeric($_get['sourceaddress']) && strlen($_get['sourceaddress'])>11) (is_numeric($_get['sourceaddress']) && strlen($_get['sourceaddress'])>20) ) $errormessage.="invalid Source Address<br>"; if (empty($_get['body']) strlen($_get['body'])>160) $errormessage.="invalid Message Body<br>"; if (empty($errormessage)) // Send the message $resultcode=api_connect("myusername", $_GET); "MyPassword", /***************************************** The message has been sent. Here you might wish to redirect to another page,store the message ID in your local database and other such actions. In this example, we will simply print
11 a basic HTML page that tells the user whether the send was successful and if so, the Message ID. ******************************************/ print $header; if ($resultcode>0) echo "Thank you, your message has been sent. The message ID is: ".$resultcode; else echo "An error occurred in sending your message. ID: ".$resultcode; print $footer; exit(); // Here is the HTML page. Print the header first! print $header; if (!empty($errormessage)) print "An Error Occurred: ".$errormessage."<br>";?> <!-- A Basic HTML Form for sending a message with the API --> <FORM action="<?php echo htmlentities($_server['php_self']);?>" method="get" name="sendform"> <INPUT type="hidden" name="action" value="send">
12 <INPUT type="hidden" name="validityperiod" value="86400"> Destination Address: <INPUT name="destinationaddress" value="<?php echo $_GET['DestinationAddress'];?>"> <br> Source Address: <INPUT name="sourceaddress" value="<?php echo $_GET['SourceAddress'];?>"> <br> Message: <TEXTAREA name="body" rows="5" cols="30"><?php echo $_GET['Body'];?></TEXTAREA> <br> <INPUT type="submit" value="send Message"> Example PHP code for receiving a HTTPMO message </FORM> <?php print $footer;?> <?php /* * This example presumes that the HTTP MO is setup as GET, with "mypass" as the auth field * When a message is received, this example writes the message to a file. */ if ($_GET['auth']!='mypass') die("unauthorised Request"); $fh=fopen("/tmp/receivedmessages.log", "a"); fwrite($fh, "New Message received.\n"); fwrite($fh, "From: ".$_GET['source']."\n"); fwrite($fh, "To: ".$_GET['dest']."\n"); fwrite($fh, "Message: ".$_GET['msg']."\n"); fwrite($fh, "ID: ".$_GET['id']."\n"); fwrite($fh, "Received: ".$_GET['receivedts']."\n"); fclose($fh);?>
13 ASP API Examples Note: All of these examples use the api_connect() function (within these examples) URL: Sending a Message with the API <% '//Sending a message with the API Set ParametersDict = CreateObject("Scripting.Dictionary") Checking Your Credit Level ParametersDict.Add "Action", "Send" ParametersDict.Add "DestinationAddress", " " ParametersDict.Add "SourceAddress", "System" ParametersDict.Add "Body", "This is a test message" ParametersDict.Add "ValidityPeriod", "86400" resultcode = api_connect("myusername", "MyPassword", ParametersDict) if resultcode > 0 then response.write "Message ID is: " & resultcode else response.write "An error occured. ID: " & resultcode end if %> <% '//Checking Your Credit Level Set ParametersDict = CreateObject("Scripting.Dictionary") ParametersDict.Add "Action", "CheckCredits" resultcode = api_connect("myusername", "MyPassword", ParametersDict) if isnumeric(resultcode) AND resultcode < 0 then response.write "An error occured. ID: " & resultcode else response.write "Current Credit Level: " & resultcode end if %>
14 Checking the Status of a Message <% Running a Report <% '//Checking the Status of a Message Set ParametersDict = CreateObject("Scripting.Dictionary") ParametersDict.Add "Action", "CheckMessageStatus" ParametersDict.Add "MessageID", " " resultcode = api_connect("myusername", "MyPassword", ParametersDict) if isnumeric(resultcode) AND resultcode < 0 then response.write "An error occured. ID: " & resultcode else response.write "Current Status Is: " & resultcode end if %> '//Running a Report Set ParametersDict = CreateObject("Scripting.Dictionary") ParametersDict.Add "Action", "Report" '// Possible report types are: Outbox, Messages and Usage ParametersDict.Add "ReportType", "Messages" '// From and To timestamps are in the format YYYYMMDDHHMMSS ParametersDict.Add "From", " " ParametersDict.Add "To", " " reportbody = api_connect("myusername", "MyPassword", ParametersDict) if isnumeric(reportbody) then response.write "An error occured. ID: " & reportbody else response.write "Report follows: Credit a User (admin only) " & reportbody end if %> <% '//Creating a User (admin only) Set ParametersDict = CreateObject("Scripting.Dictionary")
15 Managing User Credits (admin only) api_connect function ParametersDict.Add "Action", "CreateUser" ParametersDict.Add "ChildUsername", "user023321" ParametersDict.Add "ChildPassword", "securepassword" '// Access Level : Normal or Admin ParametersDict.Add "AccessLevel", "Normal" ParametersDict.Add "Name", "Customer Name" ParametersDict.Add " ", "customer@ address.com" '// How many credits do we give this user initially? ParametersDict.Add "Credits", " " resultcode = api_connect("myusername", "MyPassword", ParametersDict) if resultcode > 0 then response.write "User created" else response.write "An error occured. ID: " & resultcode end if %> <% '//Managing User Credits (admin only) Set ParametersDict = CreateObject("Scripting.Dictionary") ParametersDict.Add "Action", "UpdateCredits" ParametersDict.Add "ChildUsername", "user023321" '// Give the user 10 credits. You can also use -10 '// to remove credits from a user. ParametersDict.Add "Quantity", "10" resultcode = api_connect("myusername", "MyPassword", ParametersDict) if resultcode > 0 then response.write "Credits Transferred" else response.write "An error occured. ID: " & resultcode end if %> <% function api_connect(username, Password, ParametersDict)
16 url = " '// Create post string poststring = "Username=" & Username & "&" poststring = poststring & "Password=" & Password '// Turn the parameter dictionary object into the variables items = ParametersDict.Items keys = ParametersDict.Keys For i = 0 To UBound(items) poststring = poststring & "&" & keys(i) & "=" & items(i) Next '// POST data over Set xmlhttp = Server.Createobject("MSXML2.ServerXMLHTTP") xmlhttp.open "POST",url,false xmlhttp.setrequestheader "Content-Type", "application/x-wwwform-urlencoded" xmlhttp.send poststring Response.ContentType = "text/html" Example HTML form and ASP code for sending a message PostResponse = xmlhttp.responsetext api_connect = PostResponse end function %> <% 'The Example HTML form and ASP code for sending a message %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>Send a Message</TITLE> </HEAD> <BODY> <% if Request.Querystring("Action") = "Send" then
17 %> <!--#include file="api_connect.asp"--> <% '// Verify that the parameters are correct errormessage="" destinationaddress = request.querystring("destinationaddress") if Len(destinationaddress) < 1 or IsNumeric(destinationaddress) = false then errormessage = errormessage & "Invalid Destination Address<br>" end if sourceaddress = request.querystring("sourceaddress") if Len(request.querystring("SourceAddress")) < 1 or (isnumeric(request.querystring("sourceaddress")) = false and len(sourceaddress) > 11) or (isnumeric(request.querystring("sourceaddress")) = false AND len(sourceaddress) > 20) then errormessage = errormessage & "Invalid Source Address<br>" end if body = request.querystring("body") if len(body) > 160 or len(body) < 1 then errormessage = errormessage & "Invalid Message Body<br>" end if if len(errormessage) = 0 then 'send the thing! Set ParametersDict = CreateObject("Scripting.Dictionary") ParametersDict.Add "Action", "Send" ParametersDict.Add "DestinationAddress", destinationaddress ParametersDict.Add "SourceAddress", sourceaddress
18 ParametersDict.Add "Body", body ParametersDict.Add "ValidityPeriod", "86400" resultcode = api_connect("myusername", "MyPassword", ParametersDict) if resultcode > 0 then response.write "Thank you, your message has been sent. The message ID is: " & resultcode else response.write "An error occurred in sending your message. ID: " & resultcode end if else response.write "An Error Occurred: " & errormessage end if response.write "<hr>" end if %> <!-- A Basic HTML Form for sending a message with the API --> <FORM action=" %=Request.ServerVaria bles("url")%>" method="get" name="sendform"> <input type="hidden" name="action" value="send"> Destination Address: <INPUT name="destinationaddress" value="<%=request.querystring("destinationaddress")%>"> <br> Source Address: <INPUT name="sourceaddress" value="<%=request.querystring("sourceaddress")%>"> <br> Message: <TEXTAREA name="body" rows="5" cols="30"><%=request.querystring("body")%></textarea> <br> <INPUT type="submit" value="send Message"> </FORM> </BODY> </HTML>
19 XML API Version 1.0 The XML API allows you to perform various actions such as sending and receiving messages, credit information and contacts. A valid XML API request consists of an authentication section followed by as many other sections as required in any order. For example, in one API request, you could send one message to three recipients, another message to another recipient, check your inbound messages and add a contact. The XML Document should be posted uriencoded, with a UTF-8 character set as parameter 'xml' to Note: Test form & error codes available at Authentication Authentication is required for every XML API call. This is also included in all further examples below in order to make them complete examples. <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> </apirequest> Example Responses Possible values for status are: loggedin, rejected, failed. Success Example: <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse>
20 <status>loggedin</status> <userid>4</userid> </userresponse> </apiresponse> Failure Example: <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>rejected</status> <userid>0</userid> <error> <code>-501</code> <message>unknown Username/Password</message> </error> </userresponse> Sending a Message </apiresponse> Note that the "batch" attribute of <sendsms> is not stored in the system, it is simply used as a method in which to differentiate responses. <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> <sendsms batch="[numeric]"> <source>[alphanumeric]</source>
21 <destinations> <destination ref="[alphanumeric]">[number]</destination> <contact ref="[alphanumeric]">[id]</contact> <list ref="[alphanumeric]">[id]</list> <!--... (at least one and as many of the above three as required) -- > </destinations> <message>[alphanumeric]</message> <!-- Optional parameters --> <sourceton>[number]</sourceton> <schedulefor>[time/date]</schedulefor> <udh>[udh]</udh> <dcs>[dcs]</dcs> <validityperiod>[numeric, seconds]</validityperiod> </sendsms> </apirequest> Example Response In this example, a message was sent to one number, two contacts and two distribution lists. Note that when sending to a distribution list, the Number and Message ID for the last message in the list is returned. <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid> </userresponse>
22 <smsresponse batch="1"> <destination number=" " ref="dest1"> <messageid part="1"> </messageid> <status>sent</status> </destination> <destination ref="contact1"> <error> <code>-200</code> <message> Invalid Contact</message> </error> </destination> <destination number=" " ref="contact2"> <messageid part="1"> </messageid> <messageid part="2"> </messageid> <status>sent</status> </destination> <destination ref="list1"> <error> <code>-408</code> <message>distribution List is Empty</message> </error> </destination> <destination number=" " ref="list2"> <messageid part="1"> </messageid> <messageid part="2"> </messageid> <status>sent</status> </destination> </smsresponse> </apiresponse>
23 Checking Your Credit Level <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> <creditcheck /> </apirequest> Example Response <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid> </userresponse> <creditcheckresponse>173.69</creditcheckresponse> Checking the Status of a Message </apiresponse> <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> <messagestatuscheck> <messageid>[numeric]</messageid> <messageid>[numeric]</messageid> </messagestatuscheck> </apirequest>
24 Click to see a Status List Example Response These are the standard status messages. Any other status should be treated as failed. Unknown Message ID Pending Sent Delivered Undeliverable Rejected <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid> </userresponse> Contacts <messagestatuscheckresponse> <message> <messageid>2</messageid> <status>unknown Message ID</status> </message> <message> <messageid> </messageid> <status>delivered</status> </message> </messagestatuscheckresponse> </apiresponse> It is possible to manipulate the contacts stored in your account. You can retrieve all contacts and/or manipulate specific contacts. <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user>
25 <contacts> <!-- optional, to get all contact ids or all contact ids and details --> <retrieveallcontacts mode="[id full]" /> <!-- the ref is used to tie the response to the request only, not stored --> <contact action="[create edit retrieve]" ref="[alphanumeric]"> <contactid>[numeric, only for edit and optional for retrieve]</contactid> <name>[alphanumeric, only for create or edit]</name> <number>[alphanumeric for create or edit, optional for retrieve]</number> < >[alphanumeric, only for create or edit]</ > </contact> <contact action="[create edit retrieve]" ref="[alphanumeric]"> <contactid>[numeric, only for edit and optional for retrieve]</contactid> <name>[alphanumeric, only for create or edit]</name> <number>[alphanumeric for create or edit, optional for retrieve]</number> < >[alphanumeric, only for create or edit]</ > </contact> <! > </contacts> </apirequest> Example Response Status will only ever be Saved. If there was an error saving, then you will see the message inside <error> <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid>
26 </userresponse> <contactsresponse> <-- Response to retrieveallcontacts --> <contact> <contactid>49445</contactid> </contact> <contact> <contactid>49455</contactid> </contact> <-- Response to contact actions --> <contact ref="retr_3453"> <contactid>49450</contactid> <name>fred</name> <number> </number> < ></ > </contact> <contact ref="new_7547"> <contactid>49472</contactid> </contact> <contact ref="change_9374"> <status>saved</status> </contact> <contact ref="change_9375"> <error>one or more fields are invalid</error> </contact> </contactsresponse> </apiresponse>
27 Get a list of inbound numbers <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> <getinboundnumbers /> </apirequest> Example Response <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid> </userresponse> <getinboundnumbersresponse> <msisdn> <id>142</id> <number> </number> </msisdn> <msisdn> <id>356</id> <number> </number> </msisdn> </getinboundnumbersresponse> </apiresponse>
28 Check for Inbound Messages Returns all inbound messages since (not including) lastid and the date specified in the from attribute (format: YYYY-MM- DDTHH:MM:SS+/-TZ:TZ example: T13:23:50+01:00). If no date is specified, the system will look for messages received in the last 7 days. <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> <inboundcheck lastid="[numeric]" from="[xml date/time]"/> </apirequest> Example Response <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid> </userresponse> <inboundcheckresponse> <sms> <messageid> </messageid> <source> </source> <destination> </destination> <receivedtime> t13:23:50+00:00</receivedtime> <body>this is an example message</body> </sms> <sms> <messageid> </messageid>
29 <source> </source> <destination> </destination> <receivedtime> t13:27:17+00:00</receivedtime> <body>this is another example message</body> </sms> </inboundcheckresponse> Get the templates from the Send SMS Page </apiresponse> <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> <getsmstemplates lastid="[numeric]" /> </apirequest> Example Response <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid> </userresponse> <getsmstemplatesresponse> <template> <templateid>1192</templateid> <name>template 1</name> <body>this is an SMS Template</body> </template>
30 <template> <templateid>1193</templateid> <name>renewal Reminder</name> <body>dear #Name#, your account is due for renewal in the next 7 days</body> </template> </getsmstemplatesresponse> </apiresponse> Distribution Lists <?xml version="1.0"?> <apirequest version="1"> <user> <username>[alphanumeric]</username> <password>[alphanumeric]</password> </user> <distributionlists> <!-- optional, to get all distributionlists (id and title only) --> <retrievealllists /> <!-- // optional to get the details of a specific list --> <getdetails listid="[numeric]" /> </distributionlists> </apirequest> Example Response <?xml version="1.0" encoding="utf-8"?> <apiresponse> <userresponse> <status>loggedin</status> <userid>4</userid> </userresponse> <distributionlistsresponse>
31 <!-- response to retrievealllists --> <distributionlist> <listid>1693</listid> <title>footy Team</title> </distributionlist> <distributionlist> <listid>1692</listid> <title>my Phones</title> </distributionlist> <!-- response to getdetails --> <distributionlist> <listid>1692</listid> <title>my Phones</title> <mailmerge1>make</mailmerge1> <mailmerge2>model</mailmerge2> <entries> <entry> <entryid>67602</entryid> <number> </number> <name>me</name> < ></ > <mailmerge1>nokia</mailmerge1> <mailmerge2>6820</mailmerge2> </entry> <entry> <entryid>67801</entryid> <number> </number> <name>me</name> <mailmerge1>motorola</mailmerge1> <mailmerge2>v3</mailmerge2> </entry>
32 <entry> <entryid>67806</entryid> <contactid>49455</contactid> <name>me as a contact</name> < >[email protected]</ > <mailmerge1>sony Eriksson</mailmerge1> <mailmerge2>c905</mailmerge2> </entry> </entries> </distributionlist> </distributionlistsresponse> </apiresponse>
33 What to do next... If you don t yet have a FASTSMS account and would like a no obligation trial of the FASTSMS system we will happily give you 10 FREE CREDITS to start you off. You can apply online for this free trial by visiting: If you are ready to open an account now you can do so from as little as 4.90 for 100 credits by visiting: Alternatively, contact us for more information: Phone: [email protected] Text: Fax:
API. Application Programmers Interface document. For more information, please contact: Version 2.01 Aug 2015
API Application Programmers Interface document Version 2.01 Aug 2015 For more information, please contact: Technical Team T: 01903 228100 / 01903 550242 E: [email protected] Page 1 Table of Contents Overview...
ACCREDITATION COUNCIL FOR PHARMACY EDUCATION. CPE Monitor. Technical Specifications
ACCREDITATION COUNCIL FOR PHARMACY EDUCATION CPE Monitor Technical Specifications Prepared by Steven Janis, RWK Design, Inc. Created: 02/10/2012 Revised: 09/28/2012 Revised: 08/28/2013 This document describes
Spryng Making Business Mobile www.spryng.be [email protected] - +31 (0)207703005 Spryng Headquarters: Herengracht 138-1015 BW Amsterdam - The Netherlands
Mobile Terminated SMS Gateway Contents: 1. Connecting to the gateway 2. Parameters 3. Return Values 4. Delivery Reports 5. Field types 6. Credit amount API 7. Example API 1. Connecting to the gateway http://www.spryng.be/send.php
SmarterMeasure Inbound Single Sign On (SSO) Version 1.3 Copyright 2010 SmarterServices, LLC / SmarterServices.com PO Box 220111, Deatsville, AL 36022
SmarterMeasure Inbound Single Sign On (SSO) Version 1.3 Copyright 2010 SmarterServices, LLC / SmarterServices.com PO Box 220111, Deatsville, AL 36022 Contents 1. Revision History... 3 2. Overview... 3
Please see the attached file: "SendExample.asp" for an example of how you can send files using classic ASP.
NVMS, Inc Data Exchange Specifications Version 1.5.1010 Client: Client Here Client ID: Client Num This document should explain the setup of the B2B data exchange using the transfer of data using an HTTP
Spryng Making Business Mobile www.spryng.fr [email protected]. Mobile Terminated Premium SMS Gateway. Contents:
Mobile Terminated Premium SMS Gateway Contents: 1. Connecting to the gateway 2. Parameters 3. Return Values 4. Delivery Reports 5. Field types 6. Networkcode 7. Example API 1. Connecting to the gateway
SIM Configuration Guide. February 2015 Version 1 Document Reference: 8127
SIM Configuration Guide February 2015 Version 1 Document Reference: 8127 Contents 1 SIM APN Settings... 3 2 SIM MMS Settings... 3 3 SIM Email Settings... 4 4 SIM SMS Settings... 5 5 SIM SMS Charging...
Getting Started with the icontact API
Getting Started with the icontact API Contents - Introduction -... 2 - URIs, URLs, Resources, and Supported Actions -... 3 Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST...
SMS API December 2008. Copyright 2008 FoneWorx (Pty) Ltd 1
SMS API December 2008 Copyright 2008 FoneWorx (Pty) Ltd 1 Revision History: Author Version Date Description Danie van der Walt 0.1 01/03/2008 Initial Spec Danie van der Walt 0.2 20/09/2008 -Added User
Technical documentation
Technical documentation HTTP Application Programming Interface SMPP specifications Page 1 Contents 1. Introduction... 3 2. HTTP Application Programming Interface... 4 2.1 Introduction... 4 2.2 Submitting
TWO-WAY EMAIL & SMS MESSAGING SMS WEB SERVICE. Product White Paper. Website: www.m-science.com Telephone: 01202 241120 Email: enquiries@m-science.
TWO-WAY EMAIL & SMS MESSAGING SMS WEB SERVICE Product White Paper Website: www.m-science.com Telephone: 01202 241120 Email: [email protected] Contents Introduction... 3 Product Components... 3 Web
SPARROW Gateway. Developer API. Version 2.00
SPARROW Gateway Developer API Version 2.00 Released May 2015 Table of Contents SPARROW Gateway... 1 Developer API... 1 Overview... 3 Architecture... 3 Merchant Private Key and Payment Types... 3 Integration...
Administration Guide. BlackBerry Resource Kit for BES12. Version 12.1
Administration Guide BlackBerry Resource Kit for BES12 Version 12.1 Published: 2015-03-26 SWD-20150326090858999 Contents Introduction... 4 What is BES12?...4 Key features of BES12... 4 What is the BlackBerry
HTTP - METHODS. Same as GET, but transfers the status line and header section only.
http://www.tutorialspoint.com/http/http_methods.htm HTTP - METHODS Copyright tutorialspoint.com The set of common methods for HTTP/1.1 is defined below and this set can be expanded based on requirements.
Twinfield Single Sign On
Twinfield Single Sign On manual, version 5.4 April 2009 For general information about our webservices see the Twinfield Webservices Manual Twinfield International NV De Beek 9-15 3871 MS Hoevelaken Netherlands
MBLOX RESELLER GUIDE. User guide
MBLOX RESELLER GUIDE User guide This step-by-step guide will show you how to set-up your Reseller Account. From creating sub-accounts and applying your company s branding, to setting up pricing and adding
Fairsail REST API: Guide for Developers
Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,
Secure XML API Integration Guide. (with FraudGuard add in)
Secure XML API Integration Guide (with FraudGuard add in) Document Control This is a control document DESCRIPTION Secure XML API Integration Guide (with FraudGuard add in) CREATION DATE 02/04/2007 CREATED
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY
THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY As the constantly growing demands of businesses and organizations operating in a global economy cause an increased
PROCESS TRANSACTION API
PROCESS TRANSACTION API Document Version 8.7 May 2015 For further information please contact Digital River customer support at (888) 472-0811 or [email protected]. 1 TABLE OF CONTENTS 2 Lists of tables
Direct Post. Integration Guide
Direct Post Integration Guide Updated September 2013 Table of Contents 1 Introduction... 4 1.1 What is Direct Post?... 4 1.2 About this Guide... 4 1.3 Features and Benefits... 4 1.4 Card Types Accepted...
DEPLOYMENT GUIDE DEPLOYING THE BIG-IP LTM SYSTEM WITH CITRIX PRESENTATION SERVER 3.0 AND 4.5
DEPLOYMENT GUIDE DEPLOYING THE BIG-IP LTM SYSTEM WITH CITRIX PRESENTATION SERVER 3.0 AND 4.5 Deploying F5 BIG-IP Local Traffic Manager with Citrix Presentation Server Welcome to the F5 BIG-IP Deployment
Process Transaction API
Process Transaction API Document Version 5.9 March 2011 For further information please contact Beanstream customer support at (250) 472-2326 or [email protected]. BEAN # Page 2 of 90 Date Overview...
Riverbed Cascade Shark Common REST API v1.0
Riverbed Cascade Shark Common REST API v1.0 Copyright Riverbed Technology Inc. 2015 Created Feb 1, 2015 at 04:02 PM Contents Contents Overview Data Encoding Resources information: ping information: list
DaimlerChrysler EBMX HTTP/s Quick Start Guide
DaimlerChrysler EBMX HTTP/s Quick Start Guide Document Version 2.1, August 28, 2003 Copyright 2003 Cleo Communications In this document Process Map Overview Configuration Activate the DaimlerChrysler HTTP/s
Cloud Elements! Marketing Hub Provisioning and Usage Guide!
Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading
API Integration Payment21 Recurring Billing
API Integration Payment21 Recurring Billing The purpose of this document is to describe the requirements, usage, implementation and purpose of the Payment21 Application Programming Interface (API). The
Internet Technologies. World Wide Web (WWW) Proxy Server Network Address Translator (NAT)
Internet Technologies World Wide Web (WWW) Proxy Server Network Address Translator (NAT) What is WWW? System of interlinked Hypertext documents Text, Images, Videos, and other multimedia documents navigate
NT Authentication Configuration Guide
NT Authentication Configuration Guide Version 11 Last Updated: March 2014 Overview of Ad Hoc Security Models Every Ad Hoc instance relies on a security model to determine the authentication process for
Administration Guide. BlackBerry Resource Kit for BES12. Version 12.3
Administration Guide BlackBerry Resource Kit for BES12 Version 12.3 Published: 2015-10-30 SWD-20151022151109848 Contents Compatibility with other releases...4 BES12 Log Monitoring Tool... 5 Specifying
Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA
Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Page 1 Introduction The ecommerce Hub provides a uniform API to allow applications to use various endpoints such as Shopify. The following
User Manual. Version 1.0.0.0. Yeastar Technology Co., Ltd.
User Manual Version 1.0.0.0 Yeastar Technology Co., Ltd. Table of Contents 1 Introduction 3 2 Installing MySMS Software 4 3 Managing MySMS 9 3.1 Accessing MySMS 9 3.2 Multi-User Accounts 10 3.3 Managing
AMD Telecom SMS GATEWAY HTTP API INTERFACE. Technical Specifications
AMD Telecom SMS GATEWAY HTTP API INTERFACE Technical Specifications Page 1 Contents 1. Introduction...3 1.1 Scope of Document...3 1.1.1 Introduction to HTTP2SMS.3 1.1.2 Requirements...3 2. Technical description.....3
MySagePay. User Manual. Page 1 of 48
MySagePay User Manual Page 1 of 48 Contents About this guide... 4 Getting started... 5 Online help... 5 Accessing MySagePay... 5 Supported browsers... 5 The Administrator account... 5 Creating user accounts...
MyMobileAPI. mymobileapi.com
MyMobileAPI mymobileapi.com TABLE OF CONTENTS Overview... 3 Configure Outlook... 3 Receiving Replies... 6 Configure Sender ID... 6 Delivery Receipts... 7 Sending SMS in Outlook... 7 Undeliverable Receipts
Installing and Sending with DocuSign for NetSuite v2.2
DocuSign Quick Start Guide Installing and Sending with DocuSign for NetSuite v2.2 This guide provides information on installing and sending documents for signature with DocuSign for NetSuite. It also includes
INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE
INUVIKA OPEN VIRTUAL DESKTOP ENTERPRISE SAML 2.0 CONFIGURATION GUIDE Roy Heaton David Pham-Van Version 1.1 Published March 23, 2015 This document describes how to configure OVD to use SAML 2.0 for user
DocuSign Connect for Salesforce Guide
Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign
Web applications. Web security: web basics. HTTP requests. URLs. GET request. Myrto Arapinis School of Informatics University of Edinburgh
Web applications Web security: web basics Myrto Arapinis School of Informatics University of Edinburgh HTTP March 19, 2015 Client Server Database (HTML, JavaScript) (PHP) (SQL) 1 / 24 2 / 24 URLs HTTP
The VerticalResponse API Guide
The VerticalResponse API Guide Revision 4, 9/2012 Copyright 2012 VerticalResponse, Inc. Table of Contents 1. Introduction About This Guide Enterprise API vs. Partner API Email Campaign Creation Workflow
Version 1.0. ASAM CS Single Sign-On
Version 1.0 ASAM CS Single Sign-On 1 Table of Contents 1. Purpose... 3 2. Single Sign-On Overview... 3 3. Creating Token... 4 2 1. Purpose This document aims at providing a guide for integrating a system
Fasthosts ASP scripting examples Page 1 of 17
Introduction-------------------------------------------------------------------------------------------------- 2 Sending email from your web server------------------------------------------------------------------
Secure XML API Integration Guide - Periodic and Triggered add in
Secure XML API Integration Guide - Periodic and Triggered add in Document Control This is a control document DESCRIPTION Secure XML API Integration Guide - Periodic and Triggered add in CREATION DATE 15/05/2009
DigiCert User Guide. Version 4.1
DigiCert User Guide Version 4.1 Contents 1 User Management... 7 1.1 Roles and Account Access... 7 1.1.1 Administrator Role... 7 1.1.2 User Role... 7 1.1.3 CS Verified User... 7 1.1.4 EV Verified User...
Web Meetings through VPN. Note: Conductor means person leading the meeting. Table of Contents. Instant Web Meetings with VPN (Conductor)...
Table of Contents Instant Web Meetings with VPN (Conductor)...2 How to Set Up a Scheduled Web Meeting with VPN (Conductor)...6 How to Set Up a Support Web Meeting with GVSU VPN Service (Conductor)...15
Example for Using the PrestaShop Web Service : CRUD
Example for Using the PrestaShop Web Service : CRUD This tutorial shows you how to use the PrestaShop web service with PHP library by creating a "CRUD". Prerequisites: - PrestaShop 1.4 installed on a server
AS DNB banka. DNB Link specification (B2B functional description)
AS DNB banka DNB Link specification (B2B functional description) DNB_Link_FS_EN_1_EXTSYS_1_L_2013 Table of contents 1. PURPOSE OF THE SYSTEM... 4 2. BUSINESS PROCESSES... 4 2.1. Payment for goods and services...
Cyber Security Workshop Ethical Web Hacking
Cyber Security Workshop Ethical Web Hacking May 2015 Setting up WebGoat and Burp Suite Hacking Challenges in WebGoat Concepts in Web Technologies and Ethical Hacking 1 P a g e Downloading WebGoat and Burp
Intellicus Single Sign-on
Intellicus Single Sign-on Intellicus Enterprise Reporting and BI Platform Intellicus Technologies [email protected] www.intellicus.com Copyright 2010 Intellicus Technologies This document and its content
MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012
MXSAVE XMLRPC Web Service Guide Last Revision: 6/14/2012 Table of Contents Introduction! 4 Web Service Minimum Requirements! 4 Developer Support! 5 Submitting Transactions! 6 Clients! 7 Adding Clients!
Setting up single signon with Zendesk Remote Authentication
Setting up single signon with Zendesk Remote Authentication Zendesk Inc. 2 Zendesk Developer Library Introduction Notice Copyright and trademark notice Copyright 2009 2013 Zendesk, Inc. All rights reserved.
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
XML Processing and Web Services. Chapter 17
XML Processing and Web Services Chapter 17 Textbook to be published by Pearson Ed 2015 in early Pearson 2014 Fundamentals of http://www.funwebdev.com Web Development Objectives 1 XML Overview 2 XML Processing
Using SAML for Single Sign-On in the SOA Software Platform
Using SAML for Single Sign-On in the SOA Software Platform SOA Software Community Manager: Using SAML on the Platform 1 Policy Manager / Community Manager Using SAML for Single Sign-On in the SOA Software
iglobe CRM SharePoint App Documentation Version 1.0.0.12 Thursday, January 30, 2014 Support contact iglobe: [email protected]
Tuborg Boulevard 12,3 sal 2900 Hellerup, Denmark Phone: +45 28800025 URL: www.iglobe.dk iglobe CRM SharePoint App Version 1.0.0.12 Thursday, January 30, 2014 Support contact iglobe: [email protected] Contents
Cvent Web Services API. Version V200611 June 2008
Cvent Web Services API Version V200611 Cvent, Inc. 8180 Greensboro Dr, Suite 450 McLean, VA 22102 866.318.4357 www.cvent.com [email protected] 1.0 Framework Overview... 1 1.1 Overview... 1 1.2 Compatible
Hack Yourself First. Troy Hunt @troyhunt troyhunt.com [email protected]
Hack Yourself First Troy Hunt @troyhunt troyhunt.com [email protected] We re gonna turn you into lean, mean hacking machines! Because if we don t, these kids are going to hack you Jake Davies, 19 (and
Import: Create Teachers
Import: Create Teachers Instead of having teachers register manually using the school passcode, you have the option of importing a spreadsheet to create teacher usernames. You will need administrative
MONETA.Assistant API Reference
MONETA.Assistant API Reference Contents 2 Contents Abstract...3 Chapter 1: MONETA.Assistant Overview...4 Payment Processing Flow...4 Chapter 2: Quick Start... 6 Sandbox Overview... 6 Registering Demo Accounts...
DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5
DEPLOYMENT GUIDE Version 1.1 Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Citrix Presentation Server Prerequisites
Citrix CloudPortal Services Manager 11.0 API User s Guide
Citrix CloudPortal Services Manager 11.0 API User s Guide Document Version 1.1 Copyright and Trademarks Use of the product documented herein is subject to your prior acceptance of the End User License
ivvy Events Software API www.ivvy.com
ivvy Events Software API www.ivvy.com Version 0.3 1 Contents Contents Document Control Revision History Introduction Obtaining Keys Creating the request Method/URI Header Request Headers Standard Headers
Remote Integration Guide. Online Payment Processing for Businesses Worldwide. www.telr.com
Remote Integration Guide Online Payment Processing for Businesses Worldwide www.telr.com Page 2 of 40 Contents About this guide... 3 Copyright... 3 Introduction... 3 Security... 4 Payment Card Industry
Message Containers and API Framework
Message Containers and API Framework Notices Copyright 2009-2010 Motion Picture Laboratories, Inc. This work is licensed under the Creative Commons Attribution-No Derivative Works 3.0 United States License.
PHP and XML. Brian J. Stafford, Mark McIntyre and Fraser Gallop
What is PHP? PHP and XML Brian J. Stafford, Mark McIntyre and Fraser Gallop PHP is a server-side tool for creating dynamic web pages. PHP pages consist of both HTML and program logic. One of the advantages
This section will describe the different functions that can be used by the Interspire Email Marketer XML API.
Introduction The Interspire Email Marketer XML API is a remotely accessible service API to allow Interspire Email Marketer users to run many of the Interspire Email Marketer API functions using XML requests.
Recurring Payments Manual
Recurring Payments Manual Version: 3.2 Contact details Simon Carmiggeltstraat 6-50 1011 DJ Amsterdam P.O. Box 10095 1001 EB Amsterdam The Netherlands T +31 20 240 1240 E [email protected] Table of Contents
Lecture Notes for Advanced Web Security 2015
Lecture Notes for Advanced Web Security 2015 Part 6 Web Based Single Sign-On and Access Control Martin Hell 1 Introduction Letting users use information from one website on another website can in many
Magensa Services. Administrative Account Services API Documentation for Informational Purposes Only. September 2014. Manual Part Number: 99810058-1.
Magensa Services Administrative Account Services API Documentation for Informational Purposes Only September 2014 Manual Part Number: 99810058-1.01 REGISTERED TO ISO 9001:2008 Magensa I 1710 Apollo Court
PaperCut Payment Gateway Module CommWeb Quick Start Guide
PaperCut Payment Gateway Module CommWeb Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and testing the Payment
URLs and HTTP. ICW Lecture 10 Tom Chothia
URLs and HTTP ICW Lecture 10 Tom Chothia This Lecture The two basic building blocks of the web: URLs: Uniform Resource Locators HTTP: HyperText Transfer Protocol Uniform Resource Locators Many Internet
reference: HTTP: The Definitive Guide by David Gourley and Brian Totty (O Reilly, 2002)
1 cse879-03 2010-03-29 17:23 Kyung-Goo Doh Chapter 3. Web Application Technologies reference: HTTP: The Definitive Guide by David Gourley and Brian Totty (O Reilly, 2002) 1. The HTTP Protocol. HTTP = HyperText
OAuth 2.0 Developers Guide. Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900
OAuth 2.0 Developers Guide Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900 Table of Contents Contents TABLE OF CONTENTS... 2 ABOUT THIS DOCUMENT... 3 GETTING STARTED... 4
How To Create A Personalized Website In Chalet.Ch
AAI-enabling Web Applications (personalized, dynamic content in PHP, ASP, Perl, Java,...) Valéry Tschopp 2005 SWITCH AAI Attribute Transmission Attributes Store SAML Attributes Home
ipayment Gateway API (IPG API)
ipayment Gateway API (IPG API) Accepting e-commerce payments for merchants Version 3.2 Intercard Finance AD 2007 2015 Table of Contents Version control... 4 Introduction... 5 Security and availability...
Payment Page Integration Guide
Payment Page Integration Guide Version 2.2 - May 2015 Table of Contents About this Guide...3 Introduction...4 Benefits of the Hosted Payment Page:...4 Submitting a Payment Request...5 Payment Request parameters...5
WebsitePanel Integration API
WebsitePanel Integration API Author: Feodor Fitsner Last updated: 02/12/2010 Version: 1.0 Table of Contents Introduction... 1 Requirements... 1 Basic Authentication... 1 Basic Web Services... 1 Manage
2015-11-30. Web Based Single Sign-On and Access Control
0--0 Web Based Single Sign-On and Access Control Different username and password for each website Typically, passwords will be reused will be weak will be written down Many websites to attack when looking
MiGS Virtual Payment Client Integration Guide. July 2011 Software version: MR 27
MiGS Virtual Payment Client Integration Guide July 2011 Software version: MR 27 Copyright MasterCard and its vendors own the intellectual property in this Manual exclusively. You acknowledge that you must
The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.
1. Introduction TC Monitor is easy to use Windows application for monitoring and control of some Teracom Ethernet (TCW) and GSM/GPRS (TCG) controllers. The supported devices are TCW122B-CM, TCW181B- CM,
ipay Checkout API (IPC API)
ipay Checkout API (IPC API) Accepting e-commerce payments for merchants Version 2.1 Intercard Finance AD 2007 2013 Table of Contents Introduction... 9 Scope... 10 the merchant / commercial decision makers...
Wellspring FAX Service 1 September 2015
Training Notes 1 September 2015 Wellspring Software, Inc., offers a Fax Service that can be used with PrintBoss from any computer that has internet access. Faxes are sent from PrintBoss through the internet
000-284. Easy CramBible Lab DEMO ONLY VERSION 000-284. Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0
Easy CramBible Lab 000-284 Test284,IBM WbS.DataPower SOA Appliances, Firmware V3.6.0 ** Single-user License ** This copy can be only used by yourself for educational purposes Web: http://www.crambible.com/
The following pages cover the setup process, plus some real world examples.
SMS EXPRESS - SENDING SMS FROM EMAIL GUIDE Sending SMS From Email Guide This guide contains instructions on how to send an SMS via Email using any email program/client. If you have ever sent a fax via
Real-Time Connectivity Specifications For. 270/271 and 276/277 Inquiry Transactions. United Concordia Dental (UCD)
Real-Time Connectivity Specifications For 270/271 and 276/277 Inquiry Transactions United Concordia Dental (UCD) May 15, 2015 1 Contents 1. Overview 2. Trading Partner Requirements 3. Model SOAP Messages
How To Get A Certificate From Digicert On A Pc Or Mac Or Mac (For Pc Or Ipa) On A Mac Or Ipad (For Mac) On Pc Or Pc Or Pb (For Ipa Or Mac) For Free
DigiCert User Guide Version 3.7 Contents 1 User Management... 7 1.1 Roles and Account Access... 7 1.1.1 Administrator Role... 7 1.1.2 User Role... 7 1.1.3 CS Verified User... 7 1.1.4 EV Verified User...
Release Notes. DocuSign Spring 15 Release Notes. Contents
Release Notes Updated March 6, 2015 DocuSign Spring 15 Release Notes This document provides information about the updates deployed to the DocuSign Production environment as part of the March 6, 2015 DocuSign
Configuration Guide - OneDesk to SalesForce Connector
Configuration Guide - OneDesk to SalesForce Connector Introduction The OneDesk to SalesForce Connector allows users to capture customer feedback and issues in OneDesk without leaving their familiar SalesForce
Setup and Administration for ISVs
17 Setup and Administration for ISVs ISV accounts for both hosted and private cloud support white labeling functionality and give you the ability to provision and manage customer tenants directly. A customer
Internet Technologies Internet Protocols and Services
QAFQAZ UNIVERSITY Computer Engineering Department Internet Technologies Internet Protocols and Services Dr. Abzetdin ADAMOV Chair of Computer Engineering Department [email protected] http://ce.qu.edu.az/~aadamov
InternetVista Web scenario documentation
InternetVista Web scenario documentation Version 1.2 1 Contents 1. Change History... 3 2. Introduction to Web Scenario... 4 3. XML scenario description... 5 3.1. General scenario structure... 5 3.2. Steps
REST Webservices API Tutorial
REST Webservices API Tutorial Version 1.5.1.0 Table Of Contents OVERVIEW... 3 API Call characteristics... 3 API Response... 3 Response Object... 3 Error Object... 3 Error Handling... 4 Requirements to
FileMaker Server 9. Custom Web Publishing with PHP
FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,
FAXAGE. Internet Fax API Documentation
FAXAGE Internet Fax API Documentation EC Data Systems, Inc. Last Revised: March 28, 2014 FAXAGE is a registered trademark of EC Data Systems, Inc. Patent information available at http://www.faxage.com/patent_notice.php
Ulteo Open Virtual Desktop - Protocol Description
Ulteo Open Virtual Desktop - Protocol Description Copyright 2008 Ulteo SAS 1 LIST OF PROTOCOLS USED CONTENTS Contents 1 List of Protocols used 1 1.1 Hyper Text Transfert Protocol (HTTP)..............................
Turnitin User Guide. Includes GradeMark Integration. January 2014 (revised)
Turnitin User Guide Includes GradeMark Integration January 2014 (revised) Copyright 2014 2 Contents Contents... 3 Turnitin Integration... 4 How This Guide is Organized... 4 Related Documentation... 4 Campus
HireDesk API V1.0 Developer s Guide
HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to
redcoal EmailSMS for MS Outlook and Lotus Notes
redcoal EmailSMS for MS Outlook and Lotus Notes Technical Support: [email protected] Or visit http://www.redcoal.com/ All Documents prepared or furnished by redcoal Pty Ltd remains the property of redcoal
Personal Portfolios on Blackboard
Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal
