LIPNET OUTBOUND API FORMS DOCUMENTATION

Size: px
Start display at page:

Download "LIPNET OUTBOUND API FORMS DOCUMENTATION"

Transcription

1 LIPNET OUTBOUND API FORMS DOCUMENTATION LEGAL INAKE PROFESSIONALS

2 Contents Description... 2 Requirements:... 2 General Information:... 2 Request/Response Information:... 2 Service Endpoints... 2 Outbound Endpoint... 2 Description... 2 Endpoint URIs... 2 Form Request Format... 2 JSON Response Format... 3 Code Examples... 4 PHP... 4 PHP HTML Form Page Example:... 4 PHP Stream Submission Example:... 4 PHP CURL Submission Example:... 5 ASP.NET... 5 ASP.NET HTML Form Page Example:... 5 ASP.NET C# Code Example:... 6

3 LIPNET Outbound API Forms Documentation Description Requirements: IMPORTANT: As of February 8 th 2018, communication with the LIPNET Outbound API is secured using the Transport Layer Security (TLS) version 1.2. As a result, updates to software frameworks on partners integrations may be necessary. Every development project is different and can have many parts, so a comprehensive how to for enabling TLS 1.2 is challenging. If you are receiving communication errors when integrating with the API, please contact LIP Client Services for assistance. General Information: The LIPNET Forms API is a Representational State Transfer (REST) service which uses URL encoding as the primary means of communication between computer systems Request/Response Information: The Form system receives data using a URL encoded string. Standard HTTP response codes are provided by all endpoints. Requesting application can use the HTTP response code to determine if the request was successful or if an error occurred during processing. Service Endpoints Outbound Endpoint Description Receives client lead information for call backs (outbounds) to be completed by Legal Intake Professionals (LIP). Endpoint URIs To fully integrate a web site with the live API, please use the following endpoint: - Production URI: Form Request Format The following fields are available to requesting application: - APIKey: A numeric value that indicates what client account the request is related to o A value for this field is required o Value must be a valid account id

4 - FirstName: The first name of the lead to contact o A value for this field is required - LastName: The last name of the lead to contact - (string): address of the lead to contact - PhoneNumber (string): The phone number of lead to contact that will be dialed by LIP o A value for this field is required o Value must meet the following conditions All non-numeric characters will be removed by the API All leading zero (0) and one (1) characters will be removed by the API The resulting values must be ten (10) digits in length - Comments (string): Any additional information the requestor would like to provide - SubmitterId (string): A value that represents the lead contact record of the requesting system - FormHash (string): A hashed value created using form values o A value for this field is required - MediaSourceId (string): A value that represents where the lead came from. An example would be an identifier for a web site form. JSON Response Format Depending on the result of the HTTP request, one of following will be supplied for each request sent to the outbound endpoint Successful Request HTTP Response Code: 200 Response Message: Outbound submitted successfully Unsuccessful Request Issue: Missing API Key - HTTP Response Code: 400 (Bad Request) - Message: Invalid request. Issue: Invalid API Key - HTTP Response Code: 401 (Unauthorized) - Message: Unauthorized User. Issue: Missing First Name - HTTP Response Code: 500 (Internal Server Error) - Message: Validation failed for one or more entities. See 'EntityValidationErrors' property for more details Issue: Invalid Phone Number

5 - HTTP Response Code: 406 (Bad Request) - Message: Request not accepted Issue: Missing Form Hash - HTTP Response Code: 400 (Bad Request) - Message: Invalid request Code Examples PHP Use the following examples as a reference when integrating a web site coded using PHP. PHP HTML Form Page Example: <! - Filename: index.php --> <! - Description: html form presented to user to fill out --> <html> <body> <form method= post action=./process.php > <input type= hidden name= apikey value= 1234 /> First Name: <input type= text name= firstname /><br /> Last Name: <input type= text name= lastname /><br /> Address: <input type= text name= address /><br /> Phone Number: <input type= text name= phonenumber /><br /> Comments: <input type= textarea rows= 3 name= comments /><br /> <input type= submit value= Submit Form /> </form> </body> </html> PHP Stream Submission Example: <! - Filename: process.php --> <! - Description: code that submits form data to API using a data stream --> <?php $apiurl = $submitvalues = array( "ApiKey" => $_POST[ apikey ], "FirstName" => $_POST[ firstname ], "LastName" => $_POST[ lastname ], " " => $_POST[ address ], "PhoneNumber" => $_POST[ phonenumber ], "Comments" => $_POST[ comments ], "Encryption" => "SHA" ); $encryptstr = xxxmyprivateapikey== ; //value provided by LIP foreach($submitvalues as $key => $value) $encryptstr.= $key.$value; $encryptstr = base64_encode(sha1($encryptstr, true)); $submitvalues[ FormHash ] = $encryptstr; $postoptions = array('http' => array( 'method' => 'POST', 'content' => http_build_query($values) )); $context = stream_context_create($postoptions); $fopen 'rb', false, $context); $response print_r($response);

6 if (!$response) print("error occurred"); //do error handling here else print($response);?> PHP CURL Submission Example: <! - Filename: process.php --> <! - Description: code that submits form data to API using CURL --> <?php $apiurl = $submitvalues = array( "ApiKey" => $_POST[ apikey ], "FirstName" => $_POST[ firstname ], "LastName" => $_POST[ lastname ], " " => $_POST[ address ], "PhoneNumber" => $_POST[ phonenumber ], "Comments" => $_POST[ comments ], "Encryption" => "SHA" ); $encryptstr = xxxmyprivateapikey== ; //value provided by LIP foreach($submitvalues as $key => $value) $encryptstr.= $key.$value; $encryptstr = base64_encode(sha1($encryptstr, true)); $submitvalues[ FormHash ] = $encryptstr; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $apiurl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($submitvalues)); $response = curl_exec($ch); $responseinfo = curl_getinfo($ch); curl_close($ch); if ($responseinfo['http_code']!= 200) // Handle API error?> ASP.NET Use the following examples as a reference when integrating a web site coded using ASP.Net. ASP.NET HTML Form Page Example: <! - Filename: index.aspx --> <! - Description: form presented to user to fill out --> <%@ Page Language="C#" CodeFile="Index.aspx.cs" Inherits="Index" %> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:hiddenfield id="hidapikey" runat="server" Value="525" />

7 First Name: <asp:textbox id="txtfirstname" runat="server" /><br /> Last Name: <asp:textbox id="txtlastname" runat="server" /><br /> Address: <asp:textbox id="txt address" runat="server" /><br /> Phone Number: <asp:textbox id="txtphonenumber" runat="server" /><br /> Comments:<asp:TextBox id="txtcomments" runat="server" TextMode="MultiLine" Rows="3" /><br /> <asp:button id="btnsubmit" runat="server" Text="Submit Form" OnClick="btnSubmit_Click" /><br /> <asp:label ID="lblResult" runat="server" /> </div> </form> </body> </html> ASP.NET C# Code Example: <! - Filename: index.aspx.cs --> <! - Description: index.aspx code behind file --> using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Net; using System.Security.Cryptography; using System.Text; using System.Web; public partial class Index : System.Web.UI.Page protected void btnsubmit_click(object sender, EventArgs e) var apiurl = " var values = new NameValueCollection() "ApiKey", this.hidapikey.value, "FirstName", this.txtfirstname.text, "LastName", this.txtlastname.text, " ", this.txt address.text, "PhoneNumber", this.txtphonenumber.text, "Comments", this.txtcomments.text, "Encryption", "SHA" ; var sb = new StringBuilder(); sb.append("xxxmyprivateapikey=="); //Provided by LIP foreach (var item in values.allkeys) sb.append(item + "" + values[item]); var encryptedstring = Convert.ToBase64String(new SHA1CryptoServiceProvider().ComputeHash(Encoding.ASCII.GetBytes(sb.ToString()))); values.add("formhash", encryptedstring); using (WebClient client = new WebClient()) var sresponse = String.Empty; try byte[] response = client.uploadvalues(apiurl, values); sresponse = ASCIIEncoding.ASCII.GetString(response); catch(exception ex) sresponse = ex.message; this.lblresult.text = sresponse;

8

API USER GUIDE MARKETING MESSAGES & BROADCASTS

API USER GUIDE MARKETING MESSAGES & BROADCASTS API USER GUIDE MARKETING MESSAGES & BROADCASTS General Overview So, what do you want to do? 3 3 Marketing Messages with replies 4 First, let s send the messages Advanced API developers note Next, let s

More information

API LEADFOX TECHNOLOGY INC. By Sébastien Lamanna. Created on January 6, 2016

API LEADFOX TECHNOLOGY INC. By Sébastien Lamanna. Created on January 6, 2016 API By Sébastien Lamanna LEADFOX TECHNOLOGY INC. Created on January 6, 2016 Latest update February 9, 2016 Revisions History Version By Date 1.0 1.1 Initial version Sébastien Lamanna Jan. 6, 2016 Add Contact/GetHistory

More information

InstaMember USER S GUIDE

InstaMember USER S GUIDE InstaMember USER S GUIDE InstaMember Licensing API Guide 1 InstaMember Licensing API Guide The InstaMember licensing feature is designed to integrate seamlessly with your web applications or scripts. It

More information

Connect Media Bulk SMS API Documentation

Connect Media Bulk SMS API Documentation Connect Media Bulk SMS API Documentation All requests are submitted through the POST Method Base URL: http://www.connectmedia.co.ke/user-board/?api Information About Parameters: PARAMETERS username Your

More information

ARTIO SMS Services HTTP API Documentation

ARTIO SMS Services HTTP API Documentation ARTIO SMS Services HTTP API Documentation David Jozefov Michal Unzeitig Copyright 2013 - ARTIO International Co. ARTIO SMS Services HTTP API Documentation ARTIO Publication date: 4.9.2013 Version: 1.0.1

More information

Sending Documents to Tenstreet API Guide (rev 06/2017)

Sending Documents to Tenstreet API Guide (rev 06/2017) Sending Documents to Tenstreet API Guide (rev 06/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

Integration REST Text2Speech Version 1.1

Integration REST Text2Speech Version 1.1 1 Integration REST Text2Speech Version 1.1 2 Table of Contents Introduction P. 3 Technical Platform Request for shipments voicemails P. 4 JSON request P. 4 Example request CURL P. 5 Sample PHP request

More information

API Spec Sheet For Version 2.5

API Spec Sheet For Version 2.5 INTRODUCTION The Wholesale SMS API is ideally suited for sending individual sms messages and/or automated responses through our premium routes. To send bulk messages through the API you can set your server

More information

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University ONE SOCIAL A Writing Project Presented to The Faculty of the Department of Computer Science San José State University In Partial Fulfillment of the Requirements for the Degree Master of Computer Science

More information

ASP.NET - MANAGING STATE

ASP.NET - MANAGING STATE ASP.NET - MANAGING STATE http://www.tutorialspoint.com/asp.net/asp.net_managing_state.htm Copyright tutorialspoint.com Hyper Text Transfer Protocol HTTP is a stateless protocol. When the client disconnects

More information

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018)

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy...

More information

Sending Data Updates to Tenstreet API Guide (rev 10/2017)

Sending Data Updates to Tenstreet API Guide (rev 10/2017) Sending Data Updates to Tenstreet API Guide (rev 10/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

SMS GATEWAY API INTEGRATION GUIDE

SMS GATEWAY API INTEGRATION GUIDE SMS GATEWAY API INTEGRATION GUIDE For PHP Developers Are you a developer or bulk SMS reseller? You can interface your application, website or system with our 247 reliable messaging gateway by using our

More information

2. On completing your registration you will get a confirmation . Click on the link or paste the link into your browser to validate the account.

2. On completing your registration you will get a confirmation  . Click on the link or paste the link into your browser to validate the account. Bongo Live SMS API v1.4 Revision History: v 1.1 - Initial Release. v1.2 19/6/2013 - Added Balance check and Sender Name Check v1.3 15/10/2013 Added incoming sms specifications v1.4 13/05/2014 Added API

More information

Asp.Net Dynamic Form

Asp.Net Dynamic  Form Asp.Net Dynamic Email Form Easy Install. Use Custom User Control or Use Dynamic Email Form Library Generate Dynamic Email Form from Xml file. Submit Form to your email. Submit Form with Network Credential.

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 5 6 8 10 Introduction to ASP.NET and C# CST272 ASP.NET ASP.NET Server Controls (Page 1) Server controls can be Buttons, TextBoxes, etc. In the source code, ASP.NET controls

More information

SMS Gateway. API & Application Technical Documentation. Revision 1. Current as at 10 th August Document ID: DOC-SMS-API-R1

SMS Gateway. API & Application Technical Documentation. Revision 1. Current as at 10 th August Document ID: DOC-SMS-API-R1 SMS Gateway API & Application Technical Documentation Revision 1 Current as at 10 th August 2010 Document ID: DOC-SMS-API-R1 Information in this document is subject to change without notice. This document

More information

ASP.NET Security. 7/26/2017 EC512 Prof. Skinner 1

ASP.NET Security. 7/26/2017 EC512 Prof. Skinner 1 ASP.NET Security 7/26/2017 EC512 Prof. Skinner 1 ASP.NET Security Architecture 7/26/2017 EC512 Prof. Skinner 2 Security Types IIS security Not ASP.NET specific Requires Windows accounts (NTFS file system)

More information

API Spec Sheet For HLR v1.4

API Spec Sheet For HLR v1.4 API Spec Sheet For HLR v1.4 INTRODUCTION The Wholesale SMS HLR API provides an easy to use method of accessing the HLR (Home Location Register) for all networks worldwide that support HLR. For large batch

More information

Sending Application Data to Tenstreet API Guide

Sending Application Data to Tenstreet API Guide Sending Application Data to Tenstreet API Guide Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support Requests...

More information

<tr><td>last Name </td><td><input type="text" name="shippingaddress-last-name"

<tr><td>last Name </td><td><input type=text name=shippingaddress-last-name // API Setup Parameters $gatewayurl = 'https://secure.payscout.com/api/v2/three-step'; $APIKey = '2F822Rw39fx762MaV7Yy86jXGTC7sCDy'; // If there is no POST data or a token-id, print the initial Customer

More information

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners.

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners. API The specifications and information in this document are subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. This document may

More information

PrintShop Mail Web. Web Integration Guide

PrintShop Mail Web. Web Integration Guide PrintShop Mail Web Web Integration Guide Copyright Information Copyright 1994-2010 Objectif Lune Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API.

API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API. API Documentation Link : https://vip.bitcoin.co.id/trade api Our API is very similar with BTC-e s API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API.

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

API Technical Reference

API Technical Reference API Technical Reference Copyright 1996/2015, Quality System Solutions Limited Unit 8 Lansdowne Court Bumpers Way, Chippenham, Wiltshire, SN13 0RP United Kingdom Tel: +44 (0)1249 566010 E-mail: support@callprocrm.com

More information

ASP.NET Pearson Education, Inc. All rights reserved.

ASP.NET Pearson Education, Inc. All rights reserved. 1 ASP.NET 2 Rule One: Our client is always right. Rule Two: If you think our client is wrong, see Rule One. Anonymous 3 25.1 Introduction ASP.NET 2.0 and Web Forms and Controls Web application development

More information

API DOCUMENTATION INDODAX.COM

API DOCUMENTATION INDODAX.COM API DOCUMENTATION INDODAX.COM v1.8 Last updated: 9 April 2018 Table of Contents Public API 3 Private API 3 Authentication 4 Responses 4 API Methods 5 getinfo 5 transhistory 6 trade 7 tradehistory 8 openorders

More information

Discussion #4 CSS VS XSLT. Multiple stylesheet types with cascading priorities. One stylesheet type

Discussion #4 CSS VS XSLT. Multiple stylesheet types with cascading priorities. One stylesheet type Discussion #4 CSS VS XSLT Difference 1 CSS Multiple stylesheet types with cascading priorities XSLT One stylesheet type Difference 2 Used for HTML Used for structured document Difference 3 Only client

More information

Form Processing in PHP

Form Processing in PHP Form Processing in PHP Forms Forms are special components which allow your site visitors to supply various information on the HTML page. We have previously talked about creating HTML forms. Forms typically

More information

HTTPS API Specifications

HTTPS API Specifications HTTPS API Specifications June 17, 2016 P a g e 1 - HTTPS API Specifications Contents HTTPS API Overview... 3 Terminology... 3 Process Overview... 3 Parameters... 4 Responses... 5 Examples... 6 PERL on

More information

XML with.net: Introduction

XML with.net: Introduction XML with.net: Introduction Extensible Markup Language (XML) strores and transports data. If we use a XML file to store the data then we can do operations with the XML file directly without using the database.

More information

R2Library.com Links: Note that the link into R2library.com cannot be placed on a public page or you will give access to

R2Library.com Links: Note that the link into R2library.com cannot be placed on a public page or you will give access to R2 LIBRARY TRUSTED AUTHENTICATION CONFIGURATION Document Purpose: This document defines the basic configuration and client coding for creating an access link from a secure internal intranet page to R2libary.com

More information

Web Forms ASP.NET. 2/12/2018 EC512 - Prof. Skinner 1

Web Forms ASP.NET. 2/12/2018 EC512 - Prof. Skinner 1 Web Forms ASP.NET 2/12/2018 EC512 - Prof. Skinner 1 Active Server Pages (.asp) Used before ASP.NET and may still be in use. Merges the HTML with scripting on the server. Easier than CGI. Performance is

More information

Errors Message Bad Authentication Data Code 215 User_timeline

Errors Message Bad Authentication Data Code 215 User_timeline Errors Message Bad Authentication Data Code 215 User_timeline ("errors":(("code":215,"message":"bad Authentication data. "))) RestKit.ErrorDomain Code=- 1011 "Expected status code in (200-299), got 400"

More information

emag Marketplace API Implementation Best Practices v1.0

emag Marketplace API Implementation Best Practices v1.0 emag Marketplace API Implementation Best Practices v1.0 17.03.2015 Version Date modified Changes 1.0 12.02.2015 First draft Table of Contents 1. General guidelines for authentication... 2 2. Maximum size

More information

Quick Start. SLNG Basic API Instruction for Version 5.5 שרה אמנו 39/21 מודיעין I טל' I פקס

Quick Start. SLNG Basic API Instruction for  Version 5.5 שרה אמנו 39/21 מודיעין I טל' I פקס Quick Start SLNG Basic API Instruction for Email Version 5.5 1 Contents Introduction... 4 Sending Email using HTTP JSON Post Interface... 5 Sending Email JSON format... 5 Fields Description Request...

More information

Remote API V1.1 Documentation

Remote API V1.1 Documentation Remote API V1.1 Documentation Disclaimer: This manual is licensed under Cellunlocker.net. The information contained in these materials is proprietary and confidential to Cellunlocker.net and/or its subsidiaries

More information

XML API Developer-Documentation Version 2.01

XML API Developer-Documentation Version 2.01 XML API Developer-Documentation Version 2.01 07/23/2015 1 Content Introduction...4 Who needs this information?...4 S-PAY Testing Environment...4 URL to our API...4 Preparation...5 Requirements...5 API

More information

Web Programming Paper Solution (Chapter wise)

Web Programming Paper Solution (Chapter wise) .Net.net code to insert new record in database using C#. Database name: College.accdb Table name: students Table structure: std_id number std_name text std_age number Table content (before insert): 2 abcd

More information

Brain Corporate Bulk SMS

Brain Corporate Bulk SMS Brain Corporate Bulk SMS W e S i m p l y D e l i v e r! API Documentation V.2.0 F e b r u a r y 2 0 1 9 2 Table of Contents Sending a Quick Message... 3 API Description... 3 Request Parameter... 4 API

More information

QlikView Security. Customized authentication. March 2012 Version 1.0 Author: Fredrik Lautrup, Michael Bienstein

QlikView Security. Customized authentication. March 2012 Version 1.0 Author: Fredrik Lautrup, Michael Bienstein QlikView Security Customized authentication March 2012 Version 1.0 Author: Fredrik Lautrup, Michael Bienstein Table of Contents Introduction 4 Overview of authentication 4 Header solution 5 When to use

More information

SortMyBooks API (Application programming

SortMyBooks API (Application programming SortMyBooks API (Application programming interface) Welcome to Sort My Books. This documentation will help you to get started with SortMyBooks API. General Considerations SortMyBooks works with objects

More information

Postback. ASP.NET Event Model 55

Postback. ASP.NET Event Model 55 ASP.NET Event Model 55 Because event handling requires a round-trip to the server, ASP.NET offers a smaller set of events in comparison to a totally client-based event system. Events that occur very frequently,

More information

Click 2 Call. All rights reserved to Voicenter Revision

Click 2 Call. All rights reserved to Voicenter Revision Click Call . Click Call Click Call enables executing direct phone calls, with just the click of a button. It s super easy to implement and integrate, using our ready-to-use code. This great and versatile

More information

Cloud Computing. Up until now

Cloud Computing. Up until now Cloud Computing Lectures 17 Cloud Programming 2010-2011 Up until now Introduction, Definition of Cloud Computing Pre-Cloud Large Scale Computing: Grid Computing Content Distribution Networks Cycle-Sharing

More information

Murphy s Magic Download API

Murphy s Magic Download API Murphy s Magic Download API Last updated: 3rd January 2014 Introduction By fully integrating your website with the Murphy s Magic Download System, you can give the impression that the downloads are fully

More information

Viostream Upload Widget

Viostream Upload Widget Viostream Upload Widget Version: 1.0 Date: 15 September, 2015 Viocorp 2015 Author Brendon Kellett Viocorp International Pty Ltd ABN: 43 100 186 838 110 Jones Bay Wharf, 26-32 Pirrama Road, Pyrmont NSW

More information

WebSharpCompiler. Building a web based C# compiler using ASP.NET and TDD. Author: Dominic Millar Tech Review:Matt Rumble Editor:Cathy Tippett Feb 2011

WebSharpCompiler. Building a web based C# compiler using ASP.NET and TDD. Author: Dominic Millar Tech Review:Matt Rumble Editor:Cathy Tippett Feb 2011 WebSharpCompiler Building a web based C# compiler using ASP.NET and TDD Author: Dominic Millar Tech Review:Matt Rumble Editor:Cathy Tippett Feb 2011 http://domscode.com Introduction This tutorial is an

More information

Matrox Monarch HD Control API Guide

Matrox Monarch HD Control API Guide Matrox Monarch HD Control API Guide February 12, 2014 Y11308-301-0113 Trademarks Matrox Electronic Systems Ltd....Matrox, Monarch All other nationally and internationally recognized trademarks and tradenames

More information

Security: Threats and Countermeasures. Stanley Tan Academic Program Manager Microsoft Singapore

Security: Threats and Countermeasures. Stanley Tan Academic Program Manager Microsoft Singapore Security: Threats and Countermeasures Stanley Tan Academic Program Manager Microsoft Singapore Session Agenda Types of threats Threats against the application Countermeasures against the threats Types

More information

Employee Attendance System module using ASP.NET (C#)

Employee Attendance System module using ASP.NET (C#) Employee Attendance System module using ASP.NET (C#) Home.aspx DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

More information

Tenable.io Container Security REST API. Last Revised: June 08, 2017

Tenable.io Container Security REST API. Last Revised: June 08, 2017 Tenable.io Container Security REST API Last Revised: June 08, 2017 Tenable.io Container Security API Tenable.io Container Security includes a number of APIs for interacting with the platform: Reports API

More information

Encrypt and Decrypt Username or Password stored in database in ASP.Net using C# and VB.Net

Encrypt and Decrypt Username or Password stored in database in ASP.Net using C# and VB.Net Encrypt and Decrypt Username or Password stored in database in ASP.Net using C# and VB.Net Here Mudassar Ahmed Khan has explained how to encrypt and store Username or Password in SQL Server Database Table

More information

SMS Aggregation - API Documentation

SMS Aggregation - API Documentation SMS Aggregation - API Documentation Wireless Logic Version - 2.0 Issue Date - 20th February 2014 Wireless Logic Ltd Grosvenor House Horseshoe Crescent Beaconsfield, Buckinghamshire HP9 1LJ Tel: +44 (0)1494

More information

CSC 415 ONLINE PHOTOALBUM: THE SEQUEL ASP.NET VERSION

CSC 415 ONLINE PHOTOALBUM: THE SEQUEL ASP.NET VERSION CSC 415 ONLINE PHOTOALBUM: THE SEQUEL ASP.NET VERSION GODFREY MUGANDA In this project, you will convert the Online Photo Album project to run on the ASP.NET platform, using only generic HTTP handlers.

More information

RESTful API. Documentation

RESTful API. Documentation RESTful API Documentation Copyright 2014, 2015, 2016 by cybertoolbelt.com All Rights Reserved Revision: 1.0 9/3/2014 1.1 9/27/2014 1.2 10/16/2014 1.3 10/27/2014 1.4 11/6/2014 1.5 2/11/2015 1.7 3/18/2015

More information

8 Library loan system

8 Library loan system Chapter 8: Library loan system 153 8 Library loan system In previous programs in this book, we have taken a traditional procedural approach in transferring data directly between web pages and the ASP database.

More information

Automatic system alerts on Primo or, How to respond to a system outage in your sleep

Automatic system alerts on Primo or, How to respond to a system outage in your sleep Automatic system alerts on Primo or, How to respond to a system outage in your sleep Deborah Fitchett Library, Teaching and Learning, Lincoln University The problem The solution Step 1 System status http://status.exlibrisgroup.com/

More information

VALIDATING USING REGULAR EXPRESSIONS Understanding Regular Expression Characters:

VALIDATING USING REGULAR EXPRESSIONS Understanding Regular Expression Characters: VALIDATING USING REGULAR EXPRESSIONS Understanding Regular Expression Characters: Simple: "^\S+@\S+$" Advanced: "^([\w-\.]+)@((\[[0-9]1,3\.[0-9]1,3\.[0-9]1,3\.) (([\w-]+\.)+))([a-za-z]2,4 [0-9]1,3)(\]?)$"

More information

Backup Gateway Documentation

Backup Gateway Documentation Backup Gateway Documentation Written by Jateen Mistry Revised: 18 th May 2004, Revised: 29 th May 2004 [Adam Beaumont] SUPPORT: For support related issues please logon to the support forum at http://aqcorporate.com/support.php

More information

References webharvy mysql

References webharvy mysql References 1. https://www.dfki.de/web/research/publications/renamefilefordownload?...25... 2. MK Dalal, MA Zaveri - Applied computational intelligence and soft, 2014 - dl.acm.org 3. http://www.aclweb.org/anthology/w10-3209

More information

O Reilly Ebooks Your bookshelf on your devices!

O Reilly Ebooks Your bookshelf on your devices! r e l p m a S e e r F O Reilly Ebooks Your bookshelf on your devices! When you buy an ebook through oreilly.com, you get lifetime access to the book, and whenever possible we provide it to you in four,

More information

ASP.NET 2.0 FileUpload Server Control

ASP.NET 2.0 FileUpload Server Control ASP.NET 2.0 FileUpload Server Control Bill Evjen September 12, 2006 http://www.codeguru.com/csharp/sample_chapter/article.php/c12593 3/ In ASP.NET 1.0/1.1, you could upload files using the HTML FileUpload

More information

Sequence and ASP.NET Applications

Sequence and ASP.NET Applications PNMsoft Knowledge Base Sequence Best Practices Sequence and ASP.NET Applications Decmeber 2013 Product Version 7.x 2013 PNMsoft All Rights Reserved This document, including any supporting materials, is

More information

Requirement Document v1.2 WELCOME TO CANLOG.IN. API-Key Help Document. Version SMS Integration Document

Requirement Document v1.2 WELCOME TO CANLOG.IN. API-Key Help Document. Version SMS Integration Document WELCOME TO CANLOG.IN API-Key Help Document Version 1.2 http://www.canlog.in SMS Integration Document Integration 1. Purpose SMS integration with Canlog enables you to notify your customers and agents via

More information

ZipRecruiter Apply Webhook Documentation. ZR ATS Integration Team. Version 1.1,

ZipRecruiter Apply Webhook Documentation. ZR ATS Integration Team. Version 1.1, ZipRecruiter Apply Webhook Documentation ZR ATS Integration Team Version 1.1, 2017-10-12 Table of Contents Introduction................................................................................ 1

More information

dnrtv! featuring Peter Blum

dnrtv! featuring Peter Blum dnrtv! featuring Peter Blum Overview Hello, I am Peter Blum. My expertise is in how users try to use web controls for data entry and what challenges they face. Being a developer of third party controls,

More information

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 page 1 Revision history Version Date Details Writer 1.0.0 10/16/2014 First draft Sally Han 1.1.0 11/13/2014 Revised v.1.1

More information

INTRANET. EXTRANET. PORTAL.

INTRANET. EXTRANET. PORTAL. Intranet DASHBOARD API Getting Started Guide Version 6 Contents 1. INTRODUCTION TO THE API... 3 Overview... 3 Further Information... 4 Disclaimer... 4 2. GETTING STARTED... 5 Creating an Application within

More information

SELLER ADMINISTRATION PANEL API

SELLER ADMINISTRATION PANEL API Dotpay Technical Support Wielicka Str. 72, 30-552 Cracow, Poland phone. +48 12 688 26 00 fax +48 12 688 26 49 e-mail: tech@dotpay.pl SELLER ADMINISTRATION PANEL API Version 1.35.4.2 TABLE OF CONTENT Page

More information

Gengo API v1 / v1.1 Documentation

Gengo API v1 / v1.1 Documentation Gengo API v1 / v1.1 Documentation For v1 and v1.1 of the Gengo API v1 v1.1 Example API Authenticated Call Callback s Parameter Payloads Job Payload For responses Job Payload For submissions API Methods

More information

Microsoft Web Applications Development w/microsoft.net Framework 4. Download Full Version :

Microsoft Web Applications Development w/microsoft.net Framework 4. Download Full Version : Microsoft 70-515 Web Applications Development w/microsoft.net Framework 4 Download Full Version : https://killexams.com/pass4sure/exam-detail/70-515 QUESTION: 267 You are developing an ASP.NET MVC 2 application.

More information

OXYGEN GROUP. mycrm Technology. Interfacing with the mycrm API. engage

OXYGEN GROUP. mycrm Technology. Interfacing with the mycrm API. engage mycrm Technology Interfacing with the engage Introduction The mycrm in Engage is used to store mobile numbers and related customer data. By using the mycrm database, a client can load a wealth of information

More information

Chapter 2 How to develop a one-page web application

Chapter 2 How to develop a one-page web application Chapter 2 How to develop a one-page web application Murach's ASP.NET 4.5/C#, C2 2013, Mike Murach & Associates, Inc. Slide 1 The aspx for a RequiredFieldValidator control

More information

DRAFT COPY

DRAFT COPY Inter-Entity Payment Protocol (IPP) The Inter-Entity Payment Protocol (IPP) facilitates adhoc interactions between independent accounting systems on the web. It is a server-to-server protocol. 1 Brands,

More information

PHP Web Services by Lorna Jane Mitchell Copyright 2016 Lorna Mitchell. All rights reserved. Printed in the United States of America. Published by O Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol,

More information

عنوان مقاله : نحوه ایجاد تصویر captcha در ASP.net تهیه وتنظیم کننده : مرجع تخصصی برنامه نویسان

عنوان مقاله : نحوه ایجاد تصویر captcha در ASP.net تهیه وتنظیم کننده : مرجع تخصصی برنامه نویسان در این مقاله قصد داریم نشان دهیم که چگونه می توان تصویر Captcha را در برنامه های ASP.netخود قرار دهیم captcha.برای تشخیص ربات ها از انسان ها ایجاد شده اند که با استفاده از آن ربات ها نتوانند به سایت وارد

More information

Recharge API Document

Recharge API Document Recharge API Document API Methods 1. GetBalance 2. MobileRecharge 3. DTHRecharge 4. PostPaidBillPay 5. GetTransactionStatus 6. ChangeSMSPin 7. ComplaintRegister API URL http:// DomainName /mrechargeapi/service.asmx

More information

Entity Configuration Configure the account entity in D365 with fields to hold the cloud agreement status. Two Value OptionSet

Entity Configuration Configure the account entity in D365 with fields to hold the cloud agreement status. Two Value OptionSet Calling a Microsoft Flow Process from a Dynamics 365 Workflow Activity This post demonstrates a method to incorporate a Microsoft Flow application into a Dynamics 365 custom workflow Activity which passes

More information

MVC :: Preventing JavaScript Injection Attacks. What is a JavaScript Injection Attack?

MVC :: Preventing JavaScript Injection Attacks. What is a JavaScript Injection Attack? MVC :: Preventing JavaScript Injection Attacks The goal of this tutorial is to explain how you can prevent JavaScript injection attacks in your ASP.NET MVC applications. This tutorial discusses two approaches

More information

Task 1: JavaScript Video Event Handlers

Task 1: JavaScript Video Event Handlers Assignment 13 (NF, minor subject) Due: not submitted to UniWorX. No due date. Only for your own preparation. Goals After doing the exercises, You should be better prepared for the exam. Task 1: JavaScript

More information

blink.html 1/1 lectures/6/src/ form.html 1/1 lectures/6/src/

blink.html 1/1 lectures/6/src/ form.html 1/1 lectures/6/src/ blink.html 1/1 3: blink.html 5: David J. Malan Computer Science E-75 7: Harvard Extension School 8: 9: --> 11:

More information

Payment Center API WEBFORM/GATEWAY MODE v2.6.2

Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Content Introduction 3 WebPay (webform) 4 WebBlock (webform) 6 Pay (gateway) 4 Block (gateway) 6 Token (gateway) 6 Charge (webform/gateway) 7 Cancel (webform/gateway)

More information

STEP 1: CREATING THE DATABASE

STEP 1: CREATING THE DATABASE Date: 18/02/2013 Procedure: Creating a simple registration form in ASP.NET (Programming) Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 CREATING A SIMPLE REGISTRATION FORM

More information

WhatsATool API - REST-Like Interface to WhatsATool Services

WhatsATool API - REST-Like Interface to WhatsATool Services Disclaimer This service and also mtms Solutions GmbH is not associated in any case with WhatsApp. WhatsApp is a registered Trademark owned by WhatsApp Inc. mtms is not related in any way with WhatsApp

More information

Description: This feature will enable user to send messages from website to phone number.

Description: This feature will enable user to send messages from website to phone number. Web to Phone text message Description: This feature will enable user to send messages from website to phone number. User will use this feature and can send messages from website to phone number, this will

More information

Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank Fetch name, logos and related trademarks and

Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank Fetch name, logos and related trademarks and Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank This form submits a single amount to Fetch and then returns/displays

More information

Best Practices for developing REST API using PHP

Best Practices for developing REST API using PHP Best Practices for developing REST API using PHP Web services are a common way to enable distribution of data. They can be used to allow different software components interact with one another. It can

More information

Request URL: Available options:

Request URL:   Available options: PredatorBarrier API Information: Please note! if you need assistance with integration, require a specialized data set or have any questions, contact us at http://www.predatorbarrier.com by using the contact

More information

Console.ReadLine(); }//Main

Console.ReadLine(); }//Main IST 311 Lecture Notes Chapter 13 IO System using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading.Tasks;

More information

Design for Testability. Dave Liddament (Director and developer at Lamp Bristol Limited)

Design for Testability. Dave Liddament (Director and developer at Lamp Bristol Limited) Design for Testability Dave Liddament (Director and developer at Lamp Bristol Limited) Why Test? - Know our code works - Prevent against regression when developing new code - Stable platform for refactoring

More information

Trusted Source SSO. Document version 2.3 Last updated: 30/10/2017.

Trusted Source SSO. Document version 2.3 Last updated: 30/10/2017. Trusted Source SSO Document version 2.3 Last updated: 30/10/2017 www.iamcloud.com TABLE OF CONTENTS 1 INTRODUCTION... 1 2 PREREQUISITES... 2 2.1 Agent... 2 2.2 SPS Client... Error! Bookmark not defined.

More information

Arc en Ciel Ltd. Gazetteer Webservice FactSheet

Arc en Ciel Ltd. Gazetteer Webservice FactSheet Arc en Ciel Ltd. Gazetteer Webservice FactSheet Overview We provide two gazetteer webservices: on place name and on street name. The place name service allows a user to browse for any town, village or

More information

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University. In Fulfillment of the

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University. In Fulfillment of the ONE SOCIAL A Writing Project Presented to The Faculty of the Department of Computer Science San José State University In Fulfillment of the Requirements for the Degree Master of Computer Science By Sowmya

More information

Version Event Protect Platform RESTfull API call

Version Event Protect Platform RESTfull API call Event Protect Platform RESTfull API call Introduction Via available online service and through specified API, developers can connect to Event Protect platform and submit individual sales transaction. Service

More information

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies CNIT 129S: Securing Web Applications Ch 3: Web Application Technologies HTTP Hypertext Transfer Protocol (HTTP) Connectionless protocol Client sends an HTTP request to a Web server Gets an HTTP response

More information

PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B

PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B Table of Contents Summary... 3 Recommendations... 3 API Endpoints... 3 Method: Query... 4 GET request syntax... 4 Parameter Listing... 4 Required Parameters...

More information