Pecuario.Backend

<back to all web services

GetCountries

The following routes are available for this service:
GET/api/v1/utils/countries
namespace Pecuario.Backend.Application.DTOs

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

    [<AllowNullLiteral>]
    type Status() = 
        member val Message:String = null with get,set
        member val StatusCode:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type BaseResponse() = 
        member val Status:Status = null with get,set

    [<AllowNullLiteral>]
    type Country() = 
        member val Id:Int32 = new Int32() with get,set
        [<Required>]
        [<StringLength(2)>]
        member val Code:String = null with get,set

        [<Required>]
        [<StringLength(3)>]
        member val PhoneCode:String = null with get,set

        [<Required>]
        [<StringLength(200)>]
        member val Name:String = null with get,set

        [<Required>]
        [<StringLength(5)>]
        member val CurrencySymbol:String = null with get,set

        [<Required>]
        [<StringLength(200)>]
        member val CurrencyName:String = null with get,set

        [<Required>]
        member val Order:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type GetCountriesResponse() = 
        inherit BaseResponse()
        member val Countries:ResizeArray<Country> = new ResizeArray<Country>() with get,set

    [<AllowNullLiteral>]
    type GetCountries() = 
        interface IGet

F# GetCountries DTOs

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

HTTP + OTHER

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

GET /api/v1/utils/countries HTTP/1.1 
Host: pecuario-backend.develsystems.com 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"countries":[{"id":0,"code":"String","phoneCode":"String","name":"String","currencySymbol":"String","currencyName":"String","order":0}]}