| POST | /bets/cancel |
|---|
export enum BetSource
{
Landbase = 0,
Web = 1,
}
export class TransactionDtoBase
{
public transaction_id: string;
public transaction_time: string;
public transaction_amount: number;
public game_name: string;
public betting_place_id: string;
public betting_terminal_id: string;
public jmbg: string;
public passport_number: string;
public source: BetSource;
public identification_document_country: string;
public identification_document_type: string;
public constructor(init?: Partial<TransactionDtoBase>) { (Object as any).assign(this, init); }
}
export enum RollbackTransactionType
{
Bet = 0,
Win = 1,
Jackpot = 1,
}
export class RollbackDto extends TransactionDtoBase
{
public rollback_transaction_id: string;
public ticket_id: string;
public rollback_transaction_type: RollbackTransactionType;
public constructor(init?: Partial<RollbackDto>) { super(init); (Object as any).assign(this, init); }
}
export class ReportBetCancellations
{
public betCancellations: RecordList<RollbackDto>;
public constructor(init?: Partial<ReportBetCancellations>) { (Object as any).assign(this, init); }
}
export class RecordList<T> extends Array<T>
{
public constructor(init?: Partial<RecordList<T>>) { super(); (Object as any).assign(this, init); }
}
TypeScript ReportBetCancellations 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
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /bets/cancel HTTP/1.1
Host: api.prod-mnta.webhop.biz
Accept: application/json
Content-Type: application/json
Content-Length: length
{"betCancellations":[{"rollback_transaction_id":"String","ticket_id":"String","rollback_transaction_type":0,"transaction_id":"String","transaction_time":"0001-01-01T00:00:00.0000000Z","transaction_amount":0,"game_name":"String","betting_place_id":"String","betting_terminal_id":"String","jmbg":"String","passport_number":"String","source":0,"identification_document_country":"String","identification_document_type":"String"}]}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}