| All Verbs | /rounds/results |
|---|
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Greyhounds.WebApi.ServiceModel;
namespace Greyhounds.WebApi.ServiceModel
{
public partial class FindRoundResults
{
public virtual string? RoundId { get; set; }
public virtual string? Filter { get; set; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /rounds/results HTTP/1.1
Host: grh1.api.bettor.webhop.biz
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
roundId: String,
filter: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
[
{
id: String,
sequence: String,
createdAt: 0001-01-01
}
]