APIbackgroundchecklatam

<back to all web services

PeopleList

The following routes are available for this service:
All Verbs/PeopleList/{ApiCode}/{Country}/{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 FoundNames
            Public Sub New()
                NamesList = New List(Of String)
            End Sub

            Public Overridable Property NamesList As List(Of String)
        End Class

        Public Partial Class PeopleList
            Public Overridable Property Country As SearchCountrys
            Public Overridable Property ApiCode As String
            Public Overridable Property FullName As String
        End Class

        Public Enum SearchCountrys
            Colombia
            COL
            Mexico
            MEX
            Chile
            CHL
            Brasil
            BRA
            Panama
            PAN
            Dominicana
            DOM
            CostaRica
            CRI
            Argentina
            ARG
            Ecuador
            ECU
            Peru
            PER
            ElSalvador
            SLV
            Guatemala
            GTM
            Honduras
            HND
            Venezuela
            VEN
            ALL
            AFG
            ALB
            DZA
            AND
            AGO
            ATG
            ARM
            AUS
            AUT
            AZE
            BHS
            BHR
            BGD
            BRB
            BLR
            BEL
            BLZ
            BEN
            BTN
            BOL
            BIH
            BWA
            BRN
            BGR
            BFA
            BDI
            CPV
            KHM
            CMR
            CAN
            CAF
            TCD
            CHN
            COM
            COG
            CIV
            HRV
            CUB
            CYP
            CZE
            DNK
            DJI
            DMA
            TLS
            EGY
            GNQ
            ERI
            EST
            ETH
            FJI
            FIN
            FRA
            GAB
            GMB
            GEO
            DEU
            GHA
            GRC
            GRD
            GIN
            GNB
            GUY
            HTI
            HUN
            ISL
            IND
            IDN
            IRN
            IRQ
            IRL
            ISR
            ITA
            JAM
            JPN
            JOR
            KAZ
            KEN
            KIR
            PRK
            KOR
            KWT
            KGZ
            LAO
            LVA
            LBN
            LSO
            LBR
            LBY
            LIE
            LTU
            LUX
            MDG
            MWI
            MYS
            MDV
            MLI
            MLT
            MHL
            MRT
            MUS
            FSM
            MDA
            MCO
            MNG
            MNE
            MAR
            MOZ
            MMR
            NAM
            NRU
            NPL
            NLD
            NZL
            NIC
            NER
            NGA
            MKD
            NOR
            OMN
            PAK
            PLW
            PNG
            PRY
            PHL
            POL
            PRT
            QAT
            ROU
            RUS
            RWA
            KNA
            LCA
            VCT
            WSM
            SMR
            STP
            SAU
            SEN
            SRB
            SYC
            SLE
            SGP
            SVK
            SVN
            SLB
            SOM
            ZAF
            SSD
            ESP
            LKA
            SDN
            SUR
            SWZ
            SWE
            CHE
            SYR
            TWN
            TJK
            TZA
            THA
            TGO
            TON
            TTO
            TUN
            TUR
            TKM
            TUV
            UGA
            UKR
            ARE
            GBR
            USA
            URY
            UZB
            VUT
            VNM
            YEM
            ZMB
            ZWE
        End Enum
    End Namespace
End Namespace

VB.NET PeopleList DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /PeopleList/{ApiCode}/{Country}/{FullName} HTTP/1.1 
Host: api.backgroundchecklatam.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"Country":"Colombia","ApiCode":"String","FullName":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"NamesList":["String"]}