CDD Engine Web Service v2.14.0.0

<back to all web services

AuthPlusCheckDataRequest

Requires Authentication
The following routes are available for this service:
POST/authplus/submit
namespace CDD_Engine_DLL.DataObjects

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type AddressData() = 
        member val address1:String = null with get,set
        member val address2:String = null with get,set
        member val address3:String = null with get,set
        member val postalCode:String = null with get,set
        member val city:String = null with get,set
        member val state:String = null with get,set
        member val countryCode:String = null with get,set

    [<AllowNullLiteral>]
    type ContactNameData() = 
        member val title:String = null with get,set
        member val firstName:String = null with get,set
        member val middleName:String = null with get,set
        member val lastName:String = null with get,set

    [<AllowNullLiteral>]
    type IdentityVerificationDocuments() = 
        member val documentId:String = null with get,set
        member val authenticity:String = null with get,set

    [<AllowNullLiteral>]
    type OwnerDetails() = 
        member val dayOfBirth:Int32 = new Int32() with get,set
        member val monthOfBirth:Int32 = new Int32() with get,set
        member val yearOfBirth:Int32 = new Int32() with get,set
        member val ownershipPercentage:Nullable<Double> = new Nullable<Double>() with get,set
        member val homeAddress:AddressData = null with get,set
        member val currentAddressLessThanThreeYears:Boolean = new Boolean() with get,set
        member val previousHomeAddress:AddressData = null with get,set
        member val name:ContactNameData = null with get,set
        member val director:Boolean = new Boolean() with get,set
        member val nationality:String = null with get,set
        member val position:String = null with get,set
        member val timeAtHomeAddressYears:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val timeAtHomeAddressMonths:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val PrimaryPartyID:String = null with get,set
        member val identityVerificationDocuments:ResizeArray<IdentityVerificationDocuments> = new ResizeArray<IdentityVerificationDocuments>() with get,set

    [<AllowNullLiteral>]
    type AuthPlusCheckDataRequest() = 
        member val ApplicationGUID:String = null with get,set
        member val CSR:Int32 = new Int32() with get,set
        member val Owners:ResizeArray<OwnerDetails> = new ResizeArray<OwnerDetails>() with get,set

F# AuthPlusCheckDataRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /authplus/submit HTTP/1.1 
Host: wp-cddws-test.worldpay.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<AuthPlusCheckDataRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CDD_Engine_WS.dto.Requests">
  <ApplicationGUID>String</ApplicationGUID>
  <CSR>0</CSR>
  <Owners xmlns:d2p1="http://schemas.datacontract.org/2004/07/CDD_Engine_DLL.DataObjects">
    <d2p1:OwnerDetails>
      <d2p1:PrimaryPartyID>String</d2p1:PrimaryPartyID>
      <d2p1:currentAddressLessThanThreeYears>false</d2p1:currentAddressLessThanThreeYears>
      <d2p1:dayOfBirth>0</d2p1:dayOfBirth>
      <d2p1:director>false</d2p1:director>
      <d2p1:homeAddress>
        <d2p1:address1>String</d2p1:address1>
        <d2p1:address2>String</d2p1:address2>
        <d2p1:address3>String</d2p1:address3>
        <d2p1:city>String</d2p1:city>
        <d2p1:countryCode>String</d2p1:countryCode>
        <d2p1:postalCode>String</d2p1:postalCode>
        <d2p1:state>String</d2p1:state>
      </d2p1:homeAddress>
      <d2p1:identityVerificationDocuments>
        <d2p1:IdentityVerificationDocuments>
          <d2p1:authenticity>String</d2p1:authenticity>
          <d2p1:documentId>String</d2p1:documentId>
        </d2p1:IdentityVerificationDocuments>
      </d2p1:identityVerificationDocuments>
      <d2p1:monthOfBirth>0</d2p1:monthOfBirth>
      <d2p1:name>
        <d2p1:firstName>String</d2p1:firstName>
        <d2p1:lastName>String</d2p1:lastName>
        <d2p1:middleName>String</d2p1:middleName>
        <d2p1:title>String</d2p1:title>
      </d2p1:name>
      <d2p1:nationality>String</d2p1:nationality>
      <d2p1:ownershipPercentage>0</d2p1:ownershipPercentage>
      <d2p1:position>String</d2p1:position>
      <d2p1:previousHomeAddress>
        <d2p1:address1>String</d2p1:address1>
        <d2p1:address2>String</d2p1:address2>
        <d2p1:address3>String</d2p1:address3>
        <d2p1:city>String</d2p1:city>
        <d2p1:countryCode>String</d2p1:countryCode>
        <d2p1:postalCode>String</d2p1:postalCode>
        <d2p1:state>String</d2p1:state>
      </d2p1:previousHomeAddress>
      <d2p1:timeAtHomeAddressMonths>0</d2p1:timeAtHomeAddressMonths>
      <d2p1:timeAtHomeAddressYears>0</d2p1:timeAtHomeAddressYears>
      <d2p1:yearOfBirth>0</d2p1:yearOfBirth>
    </d2p1:OwnerDetails>
  </Owners>
</AuthPlusCheckDataRequest>