Soap


Click here for a complete list of operations.

GetChallenge2

Get Question Number with Auto Response Session Id
consumerId - client ID from project page https://e-num.com/Account/Consumers
if ErrorCode = 301 user must be redirected to
https://auth.e-num.com/permission/ask?consumerId={consumerId}&email={email}&redirectUrl={redirectUrl}&nonce={nonce}
host part of the redirectUrl must be equal to projects redirectUrl
nonce is optional, passed back if present.
User is redirected back to redirectUrl with allow=1 or deny=1 query parameter.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /Soap.asmx HTTP/1.1
Host: service.enum.ru
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GetChallenge2"

<?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>
    <GetChallenge2 xmlns="http://tempuri.org/">
      <consumerId>string</consumerId>
      <email>string</email>
      <userIp>string</userIp>
      <crc>string</crc>
    </GetChallenge2>
  </soap:Body>
</soap:Envelope>
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>
    <GetChallenge2Response xmlns="http://tempuri.org/">
      <GetChallenge2Result>
        <ErrorCode>int</ErrorCode>
        <Challenge>string</Challenge>
        <QrUrl>string</QrUrl>
        <SessionId>long</SessionId>
      </GetChallenge2Result>
    </GetChallenge2Response>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /Soap.asmx HTTP/1.1
Host: service.enum.ru
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetChallenge2 xmlns="http://tempuri.org/">
      <consumerId>string</consumerId>
      <email>string</email>
      <userIp>string</userIp>
      <crc>string</crc>
    </GetChallenge2>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetChallenge2Response xmlns="http://tempuri.org/">
      <GetChallenge2Result>
        <ErrorCode>int</ErrorCode>
        <Challenge>string</Challenge>
        <QrUrl>string</QrUrl>
        <SessionId>long</SessionId>
      </GetChallenge2Result>
    </GetChallenge2Response>
  </soap12:Body>
</soap12:Envelope>