APIbackgroundchecklatam

<back to all web services

laftValidation

The following routes are available for this service:
All Verbs/laftValidation/{customerApiCode}/{countryISO3}/{documentType}/{document}/{fullName}
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using APIbackgroundchecklatam.ServiceModel;

namespace APIbackgroundchecklatam.ServiceModel
{
    public partial class laftValidation
    {
        public virtual string CustomerApiCode { get; set; }
        public virtual string CountryISO3 { get; set; }
        public virtual string DocumentType { get; set; }
        public virtual string Document { get; set; }
        public virtual string FullName { get; set; }
    }

    public partial class laftValidationResult
    {
        public virtual laftValidation SearchData { get; set; }
        public virtual DateTime ProcessDate { get; set; }
        public virtual bool HasSuspectedLaftCases { get; set; }
        public virtual string SuspectedLaftCaseSources { get; set; }
        public virtual string Error { get; set; }
    }

}

C# laftValidation DTOs

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

HTTP + CSV

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

{"CustomerApiCode":"String","CountryISO3":"String","DocumentType":"String","Document":"String","FullName":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"SearchData":{"CustomerApiCode":"String","CountryISO3":"String","DocumentType":"String","Document":"String","FullName":"String"},"ProcessDate":"\/Date(-62135596800000-0000)\/","HasSuspectedLaftCases":false,"SuspectedLaftCaseSources":"String","Error":"String"}