Login

 
Username:
Password:

URL

Already have an account? Please
Already have an account? Please
Already have an account? Please
Already have an account? Please
Select Output Fields Select None
Session
Outcome
Message
Identity
Delay
Logged
Userid
SessionId
StartTime
Age

Hit Calculation



Authentication

In order to authenticate calls to our APIs, you must pass the token either:

  • As the _Token parameter in the query string of a REST request, or
  • In the Username value in the soap header of a SOAP request.
You can manage your API Tokens from your account page.


Sample Code

Because they use open standards, Xignite’s APIs are easily accessible from any development environment without requiring any software installation. There are many flexible ways to integrate our APIs in your apps. The sections below provide sample code in popular programming languages you can easily copy, paste, and re-use.

Sample Code for Login

The sample code is provided "as is" without any express or implied warranty. You are solely responsible for obtaining any necessary licenses or ownership rights, including for Xignite APIs and open source code, to use this sample code. Xignite has no obligation to test, certify, or support its use.


Sample Requests

All Xignite APIs support multiple, easy-to-use, open standard protocols. You can place requests against the API using a simple REST request using POST or GET or you can place a request using SOAP. The sections below show how properly formed requests and corresponding outputs look like for each protocol.

SOAP Request for Login

Request

POST http://www.xignite.com/xHelp.asmx HTTP/1.1
Host: www.xignite.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.xignite.com/services/Login"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <Header xmlns="http://www.xignite.com/services/"> <Username>string</Username> <Password>string</Password> <Tracer>string</Tracer> <IHeader_Username>string</IHeader_Username> <IHeader_Password>string</IHeader_Password> <IHeader_Tracer>string</IHeader_Tracer> </Header> </soap:Header> <soap:Body> <Login xmlns="http://www.xignite.com/services/"> <Username>string</Username> <Password>string</Password> </Login> </soap:Body> </soap:Envelope>

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LoginResponse xmlns="http://www.xignite.com/services/"> <LoginResult> <Common> <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> <Logged>boolean</Logged> <Userid>string</Userid> <SessionId>string</SessionId> <StartTime>string</StartTime> <Age>double</Age> </LoginResult> </LoginResponse> </soap:Body> </soap:Envelope>

REST GET Request for Login

Request

GET http://www.xignite.com/xHelp.asmx/Login?
Username=string&Password=string HTTP/1.1 Host: www.xignite.com

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<Session xmlns="http://www.xignite.com/services/">
  <Common>
    <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> <Logged>boolean</Logged> <Userid>string</Userid> <SessionId>string</SessionId> <StartTime>string</StartTime> <Age>double</Age> </Session>

REST POST Request for Login

Request

POST http://www.xignite.com/xHelp.asmx/Login HTTP/1.1
Host: www.xignite.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

Username=string&Password=string

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<Session xmlns="http://www.xignite.com/services/">
  <Common>
    <Outcome>Success or SystemError or RequestError or RegistrationError
</Outcome> <Message>string</Message> <Identity>string</Identity> <Delay>double</Delay> </Common> <Logged>boolean</Logged> <Userid>string</Userid> <SessionId>string</SessionId> <StartTime>string</StartTime> <Age>double</Age> </Session>

Knowledge Base Search

Find answers to your questions - search our FAQs by keyword.

Loading FAQs...

Here are our most popular FAQs. Alternatively you can search our FAQs by using the search box above or Browse our FAQs.

Contact Support

Ticket Response Time
Enterprise Plan - 2 business hours
Premium Plan - 4 business hours
Standard Plan - 1 business day


Alternate methods of contact:

support@xignite.com
Toll-free (866) 965-7627 Option 1
US (650) 655-3700 Option 1

Request a Consultation

We're here to assist you with your questions
Talk to an expert now

Output Descriptions

Outputs

NameDescriptionAlways Present
Session
No
OutcomeNo
MessageNo
IdentityNo
DelayNo
LoggedNo
UseridNo
SessionIdNo
StartTimeNo
AgeNo