| Required role: | API | 
| All Verbs | /api/Query/BranchMonday | 
|---|
namespace ClubManager.Api.Services.Query
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
    [<AllowNullLiteral>]
    type BranchMondayInstance() = 
        member val LookupValue:String = null with get,set
        member val UpdateColumnId:String = null with get,set
        member val Value:String = null with get,set
        member val ParentBranchId:Nullable<Int32> = new Nullable<Int32>() with get,set
    [<AutoQueryViewer(Description="", IconUrl="octicon:database", Title="BranchMonday")>]
    [<AllowNullLiteral>]
    type ViewBranchMonday() = 
        inherit QueryDb<BranchMondayInstance>()
    [<DataContract>]
    [<AllowNullLiteral>]
    type QueryBase() = 
        [<DataMember(Order=1)>]
        member val Skip:Nullable<Int32> = new Nullable<Int32>() with get,set
        [<DataMember(Order=2)>]
        member val Take:Nullable<Int32> = new Nullable<Int32>() with get,set
        [<DataMember(Order=3)>]
        member val OrderBy:String = null with get,set
        [<DataMember(Order=4)>]
        member val OrderByDesc:String = null with get,set
        [<DataMember(Order=5)>]
        member val Include:String = null with get,set
        [<DataMember(Order=6)>]
        member val Fields:String = null with get,set
        [<DataMember(Order=7)>]
        member val Meta:Dictionary<String, String> = new Dictionary<String, String>() with get,set
    [<AllowNullLiteral>]
    type QueryDb<'T>() = 
        inherit QueryBase()
    [<DataContract>]
    [<AllowNullLiteral>]
    type QueryResponse<'T>() = 
        [<DataMember(Order=1)>]
        member val Offset:Int32 = new Int32() with get,set
        [<DataMember(Order=2)>]
        member val Total:Int32 = new Int32() with get,set
        [<DataMember(Order=3)>]
        member val Results:ResizeArray<'T> = new ResizeArray<'T>() with get,set
        [<DataMember(Order=4)>]
        member val Meta:Dictionary<String, String> = new Dictionary<String, String>() with get,set
        [<DataMember(Order=5)>]
        member val ResponseStatus:ResponseStatus = null with get,set
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
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/Query/BranchMonday HTTP/1.1 
Host: api.clubmanagercentral.com 
Accept: application/json
Content-Type: application/json
Content-Length: length
{"Skip":0,"Take":0,"OrderBy":"String","OrderByDesc":"String","Include":"String","Fields":"String","Meta":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Offset":0,"Total":0,"Results":[{"LookupValue":"String","UpdateColumnId":"String","Value":"String","ParentBranchId":0}],"Meta":{"String":"String"},"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}