Skip to content

Meta

Get the application version

GET /api/1/version

Also the cheapest way to check that an API key works.

Example

curl -X GET \
  -H "Authorization: Api-Key $ATFINITY_API_KEY" \
  https://your-tenant.atfinity.app/api/1/version

Response 200

The live configuration version of the tenant and the version of the application.

  • conf_version (integer)
  • software_version (string)
{
  "conf_version": 137,
  "software_version": "15.4.1"
}