| All Verbs | /laftValidation/{customerApiCode}/{countryISO3}/{documentType}/{document}/{fullName} |
|---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports APIbackgroundchecklatam.ServiceModel
Namespace Global
Namespace APIbackgroundchecklatam.ServiceModel
Public Partial Class laftValidation
Public Overridable Property CustomerApiCode As String
Public Overridable Property CountryISO3 As String
Public Overridable Property DocumentType As String
Public Overridable Property Document As String
Public Overridable Property FullName As String
End Class
Public Partial Class laftValidationResult
Public Overridable Property SearchData As laftValidation
Public Overridable Property ProcessDate As Date
Public Overridable Property HasSuspectedLaftCases As Boolean
Public Overridable Property SuspectedLaftCaseSources As String
Public Overridable Property [Error] As String
End Class
End Namespace
End Namespace
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /laftValidation/{customerApiCode}/{countryISO3}/{documentType}/{document}/{fullName} HTTP/1.1
Host: api.backgroundchecklatam.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<laftValidation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIbackgroundchecklatam.ServiceModel">
<CountryISO3>String</CountryISO3>
<CustomerApiCode>String</CustomerApiCode>
<Document>String</Document>
<DocumentType>String</DocumentType>
<FullName>String</FullName>
</laftValidation>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<laftValidationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIbackgroundchecklatam.ServiceModel">
<Error>String</Error>
<HasSuspectedLaftCases>false</HasSuspectedLaftCases>
<ProcessDate>0001-01-01T00:00:00</ProcessDate>
<SearchData>
<CountryISO3>String</CountryISO3>
<CustomerApiCode>String</CustomerApiCode>
<Document>String</Document>
<DocumentType>String</DocumentType>
<FullName>String</FullName>
</SearchData>
<SuspectedLaftCaseSources>String</SuspectedLaftCaseSources>
</laftValidationResult>