Get information about the application version

GET /Api/Status/Version

Query parameters

  • SendOk boolean Required
  • SendMOTD boolean Required

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • whoAmI string | null
    • version string | null
    • dotNetVersion string | null
    • contributors array[string] | null
    • repository string | null
    • motd string | null
    • Additional properties are NOT allowed
  • 418 application/json

    Client Error

    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
    • Additional properties:
GET /Api/Status/Version
curl \
 -X GET https://app.lovassy.hu/Api/Status/Version?SendOk=true&SendMOTD=true
Response examples (200)
{
  "whoAmI": "string",
  "version": "string",
  "dotNetVersion": "string",
  "contributors": [
    "string"
  ],
  "repository": "string",
  "motd": "string"
}
Response examples (418)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}