BokaMera.API.Host

<back to all web services

ApiVersionQuery

The following routes are available for this service:
GET/versionGet information about this API's version and buildReturns information about which version of the API is currently running and when it was built.

export class ApiVersionQueryResponse
{
    /** @description Timestamp when this API was built */
    public BuildTime: string;
    /** @description The revision id from which the API was built */
    public Sha: string;
    /** @description Full version information regarding the current running assemblies of the api */
    public InformationalVersion: string;
    /** @description The semantic version number of the current running api version, see www.semver.org for more information */
    public SemVer: string;
    public ResponseStatus: ResponseStatus;

    public constructor(init?: Partial<ApiVersionQueryResponse>) { (Object as any).assign(this, init); }
}

export class ApiVersionQuery
{

    public constructor(init?: Partial<ApiVersionQuery>) { (Object as any).assign(this, init); }
}

TypeScript ApiVersionQuery DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /version HTTP/1.1 
Host: api.bokamera.se 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"Sha":"String","InformationalVersion":"String","SemVer":"String","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}