| All Verbs | /qry/bets/cancInfo |
|---|
"use strict";
export class BetCancellationInfo {
/** @param {{canCancel?:boolean,errors?:{ [index:string]: string; }}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {boolean} */
canCancel;
/** @type {{ [index:string]: string; }} */
errors;
}
export class GetBetCancellationInfo {
/** @param {{betId?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
betId;
}
JavaScript GetBetCancellationInfo DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
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/jsonl
Content-Type: text/jsonl
Content-Length: length
{"betId":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"canCancel":false,"errors":{"String":"String"}}