Pecuario.Backend

<back to all web services

GetFarms

Requires Authentication
The following routes are available for this service:
GET/api/v1/farms
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 Farm() = 
        member val Id:Int32 = new Int32() with get,set
        [<References(typeof<AppUser>)>]
        member val UserId:Int32 = new Int32() with get,set

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

        [<References(typeof<Region>)>]
        member val RegionId:Nullable<Int32> = new Nullable<Int32>() with get,set

        [<References(typeof<MeasurementUnit>)>]
        member val MeasurementUnitId:Nullable<Int32> = new Nullable<Int32>() with get,set

        member val Area:Nullable<Decimal> = new Nullable<Decimal>() with get,set

    [<AllowNullLiteral>]
    type GetFarmsResponse() = 
        inherit BaseResponse()
        member val Farms:ResizeArray<Farm> = new ResizeArray<Farm>() with get,set

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

F# GetFarms 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.

GET /api/v1/farms HTTP/1.1 
Host: pecuario-backend.develsystems.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"farms":[{"id":0,"userId":0,"name":"String","regionId":0,"measurementUnitId":0,"area":0}]}