Sanctions Search API: v2

<back to all web services

RegisterAccountTemplate

import java.math.*
import java.util.*
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*


@DataContract
open class RegisterAccountTemplate
{
}

@DataContract
open class RegisterAccountTemplateResponse
{
    /**
    * The response data
    */
    @DataMember
    @ApiMember(Description="The response data")
    @SerializedName("data") var Data:RegisterAccountTemplateData? = null
}

open class RegisterAccountTemplateData : BaseResponse()
{
    /**
    * The request body of the RegisterAccount endpoint
    */
    @ApiMember(Description="The request body of the RegisterAccount endpoint")
    var request:RegisterAccountRequest? = null

    /**
    * Reference data to fill out the RegisterAccount body
    */
    @ApiMember(Description="Reference data to fill out the RegisterAccount body")
    var referenceData:ReferenceData? = null
}

open class BaseResponse : IBaseDataResponse, IHasResponseStatus
{
    /**
    * The status of the response
    */
    @ApiMember(Description="The status of the response")
    var responseStatus:ResponseStatus? = null
}

open class ArrayOfResponseError : ArrayList<ResponseError>()
{
}

open class RegisterAccountRequest
{
    /**
    * The desired login username for the account
    */
    @ApiMember(Description="The desired login username for the account", IsRequired=true)
    var username:String? = null

    /**
    * The password for account login
    */
    @ApiMember(Description="The password for account login", IsRequired=true)
    var password:String? = null

    /**
    * The contact email address for the account holder
    */
    @ApiMember(Description="The contact email address for the account holder", IsRequired=true)
    var email:String? = null

    /**
    * The full legal name of the account holder
    */
    @ApiMember(Description="The full legal name of the account holder", IsRequired=true)
    var fullName:String? = null

    /**
    * The registered name of the company associated with this account
    */
    @ApiMember(Description="The registered name of the company associated with this account", IsRequired=true)
    var companyName:String? = null

    /**
    * The primary contact phone number of the company
    */
    @ApiMember(Description="The primary contact phone number of the company", IsRequired=true)
    var companyPhone:String? = null

    /**
    * The first line of the company’s address (e.g., street name and number)
    */
    @ApiMember(Description="The first line of the company’s address (e.g., street name and number)", IsRequired=true)
    var address1:String? = null

    /**
    * The second line of the company’s address (optional)
    */
    @ApiMember(Description="The second line of the company’s address (optional)")
    var address2:String? = null

    /**
    * The third line of the company’s address (optional)
    */
    @ApiMember(Description="The third line of the company’s address (optional)")
    var address3:String? = null

    /**
    * The city where the company is located (optional)
    */
    @ApiMember(Description="The city where the company is located (optional)")
    var city:String? = null

    /**
    * The postal or ZIP code of the company’s address
    */
    @ApiMember(Description="The postal or ZIP code of the company’s address", IsRequired=true)
    var postcode:String? = null

    /**
    * The country where the company is registered
    */
    @ApiMember(Description="The country where the company is registered", IsRequired=true)
    var country:String? = null

    /**
    * The classification of the company (e.g., LLC, Corporation, Sole Proprietorship)
    */
    @ApiMember(Description="The classification of the company (e.g., LLC, Corporation, Sole Proprietorship)", IsRequired=true)
    var companyType:String? = null

    /**
    * The industry sector the company operates in
    */
    @ApiMember(Description="The industry sector the company operates in", IsRequired=true)
    var companyIndustry:String? = null

    /**
    * The trade body, network, or affiliation the company is a member of (if applicable)
    */
    @ApiMember(Description="The trade body, network, or affiliation the company is a member of (if applicable)")
    var companyNetwork:String? = null

    /**
    * Indicates agreement to the terms and conditions (required)
    */
    @ApiMember(Description="Indicates agreement to the terms and conditions (required)", IsRequired=true)
    var agreeToTerms:Boolean? = null

    /**
    * Indicates agreement to the data protection statement (required)
    */
    @ApiMember(Description="Indicates agreement to the data protection statement (required)", IsRequired=true)
    var agreeToDataProtection:Boolean? = null

    /**
    * Indicates consent to be contacted (optional)
    */
    @ApiMember(Description="Indicates consent to be contacted (optional)")
    var agreeToContact:Boolean? = null

    /**
    * Indicates agreement to the privacy policy (required)
    */
    @ApiMember(Description="Indicates agreement to the privacy policy (required)", IsRequired=true)
    var agreeToPrivacy:Boolean? = null

    /**
    * An optional voucher code for discounts or promotions
    */
    @ApiMember(Description="An optional voucher code for discounts or promotions")
    var voucherCode:String? = null

    /**
    * An optional code that grants access to certain features or subscriptions
    */
    @ApiMember(Description="An optional code that grants access to certain features or subscriptions")
    var accountActivationCode:String? = null

    /**
    * The company's VAT registration number (if applicable)
    */
    @ApiMember(Description="The company's VAT registration number (if applicable)")
    var vatNumber:String? = null

    /**
    * The country where the company is VAT-registered
    */
    @ApiMember(Description="The country where the company is VAT-registered")
    var vatCountry:String? = null
}

open class ReferenceData
{
    /**
    * A list of supported country values
    */
    @ApiMember(Description="A list of supported country values")
    var countries:ArrayOfCountry? = null

    /**
    * A list of valid industry classifications for companies
    */
    @ApiMember(Description="A list of valid industry classifications for companies")
    var companyIndustries:ArrayOfCompanyIndustry? = null

    /**
    * A list of accepted company types
    */
    @ApiMember(Description="A list of accepted company types")
    var companyTypes:ArrayOfCompanyType? = null

    /**
    * A list of countries where VAT registration is recognized
    */
    @ApiMember(Description="A list of countries where VAT registration is recognized")
    var vatCountries:ArrayOfVATCountry? = null

    /**
    * A URL linking to the terms and conditions document
    */
    @ApiMember(Description="A URL linking to the terms and conditions document")
    var termsAndConditionsLink:String? = null

    /**
    * A URL linking to the privacy policy
    */
    @ApiMember(Description="A URL linking to the privacy policy")
    var privacyPolicyLink:String? = null

    /**
    * The statement regarding contact preferences
    */
    @ApiMember(Description="The statement regarding contact preferences")
    var contactStatement:String? = null

    /**
    * The statement outlining data protection policies
    */
    @ApiMember(Description="The statement outlining data protection policies")
    var dataProtectionStatement:String? = null
}

open class ArrayOfCountry : ArrayList<String>()
{
}

open class ArrayOfCompanyIndustry : ArrayList<String>()
{
}

open class ArrayOfCompanyType : ArrayList<String>()
{
}

open class ArrayOfVATCountry : ArrayList<String>()
{
}

Kotlin RegisterAccountTemplate DTOs

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

HTTP + SOAP12

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

POST /soap12 HTTP/1.1 
Host: api.sanctionssearch.com 
Content-Type: text/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>

<RegisterAccountTemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types" />

</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
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>

<RegisterAccountTemplateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
  <Data>
    <ResponseStatus>
      <ErrorCode>String</ErrorCode>
      <Message>String</Message>
      <StackTrace>String</StackTrace>
      <Errors>
        <ResponseError>
          <ErrorCode>String</ErrorCode>
          <FieldName>String</FieldName>
          <Message>String</Message>
          <Meta xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:KeyValueOfstringstring>
              <d6p1:Key>String</d6p1:Key>
              <d6p1:Value>String</d6p1:Value>
            </d6p1:KeyValueOfstringstring>
          </Meta>
        </ResponseError>
      </Errors>
      <Meta xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringstring>
          <d4p1:Key>String</d4p1:Key>
          <d4p1:Value>String</d4p1:Value>
        </d4p1:KeyValueOfstringstring>
      </Meta>
    </ResponseStatus>
    <ReferenceData>
      <CompanyIndustries>
        <CompanyIndustry>String</CompanyIndustry>
      </CompanyIndustries>
      <CompanyTypes>
        <CompanyType>String</CompanyType>
      </CompanyTypes>
      <ContactStatement>String</ContactStatement>
      <Countries>
        <Country>String</Country>
      </Countries>
      <DataProtectionStatement>String</DataProtectionStatement>
      <PrivacyPolicyLink>String</PrivacyPolicyLink>
      <TermsAndConditionsLink>String</TermsAndConditionsLink>
      <VATCountries>
        <VATCountry>String</VATCountry>
      </VATCountries>
    </ReferenceData>
    <Request>
      <AccountActivationCode>String</AccountActivationCode>
      <Address1>String</Address1>
      <Address2>String</Address2>
      <Address3>String</Address3>
      <AgreeToContact>false</AgreeToContact>
      <AgreeToDataProtection>false</AgreeToDataProtection>
      <AgreeToPrivacy>false</AgreeToPrivacy>
      <AgreeToTerms>false</AgreeToTerms>
      <City>String</City>
      <CompanyIndustry>String</CompanyIndustry>
      <CompanyName>String</CompanyName>
      <CompanyNetwork>String</CompanyNetwork>
      <CompanyPhone>String</CompanyPhone>
      <CompanyType>String</CompanyType>
      <Country>String</Country>
      <Email>String</Email>
      <FullName>String</FullName>
      <Password>String</Password>
      <Postcode>String</Postcode>
      <Username>String</Username>
      <VATCountry>String</VATCountry>
      <VATNumber>String</VATNumber>
      <VoucherCode>String</VoucherCode>
    </Request>
  </Data>
</RegisterAccountTemplateResponse>

</soap12:Body>
</soap12:Envelope>