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 .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	ApplicationGUID: String,
	CSR: 0,
	Owners: 
	[
		{
			dayOfBirth: 0,
			monthOfBirth: 0,
			yearOfBirth: 0,
			ownershipPercentage: 0,
			homeAddress: 
			{
				address1: String,
				address2: String,
				address3: String,
				postalCode: String,
				city: String,
				state: String,
				countryCode: String
			},
			currentAddressLessThanThreeYears: False,
			previousHomeAddress: 
			{
				address1: String,
				address2: String,
				address3: String,
				postalCode: String,
				city: String,
				state: String,
				countryCode: String
			},
			name: 
			{
				title: String,
				firstName: String,
				middleName: String,
				lastName: String
			},
			director: False,
			nationality: String,
			position: String,
			timeAtHomeAddressYears: 0,
			timeAtHomeAddressMonths: 0,
			PrimaryPartyID: String,
			identityVerificationDocuments: 
			[
				{
					documentId: String,
					authenticity: String
				}
			]
		}
	]
}