Six4Win.WebApi

<back to all web services

GetBetCancellationInfo

The following routes are available for this service:
All Verbs/qry/bets/cancInfo
namespace Six4Win.WebApi.ServiceModel

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

    [<AllowNullLiteral>]
    type BetCancellationInfo() = 
        member val CanCancel:Boolean = new Boolean() with get,set
        member val Errors:Dictionary<String, String> = null with get,set

    [<AllowNullLiteral>]
    type GetBetCancellationInfo() = 
        member val BetId:String = null with get,set

F# GetBetCancellationInfo 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 /qry/bets/cancInfo HTTP/1.1 
Host: s4w2.api.bettor.cc 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

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

{"canCancel":false,"errors":{"String":"String"}}