APIbackgroundchecklatam

<back to all web services

GetCountries

The following routes are available for this service:
All Verbs/GetCountrys/{lang}
namespace APIbackgroundchecklatam.ServiceModel

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type CountriesList() = 
        member val ValidCountries:ResizeArray<String> = new ResizeArray<String>() with get,set

    type Languages =
        | en = 0
        | es = 1

    [<AllowNullLiteral>]
    type GetCountries() = 
        member val lang:Languages = new Languages() with get,set

F# GetCountries 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 /GetCountrys/{lang} HTTP/1.1 
Host: api.backgroundchecklatam.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"lang":"en"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"ValidCountries":["String"]}