Relayer logoRelayer
Device endpoints

Device update check

The entire client contract. `200` returns an update manifest, `204` means up to date or not in the current rollout cohort. Every check doubles as the heartbeat behind the fleet dashboard. This endpoint **is** Tauri's dynamic-updater contract.

GET
/u/{appRef}/{channel}/{platform}/{arch}/{version}

The entire client contract. 200 returns an update manifest, 204 means up to date or not in the current rollout cohort. Every check doubles as the heartbeat behind the fleet dashboard.

This endpoint is Tauri's dynamic-updater contract.

Path Parameters

appRef*string
channel*string
platform*string
arch*string
version*string

Version the device currently runs

Header Parameters

X-Relayer-Device?string

Anonymous UUID generated and persisted by your app. Required to join staged-rollout cohorts and the fleet dashboard.

Response Body

application/json

application/json

curl -X GET "https://example.com/u/string/string/string/string/string"
{  "version": "string",  "notes": "string",  "pub_date": "2019-08-24T14:15:22Z",  "url": "http://example.com",  "sha512": "string",  "signature": "string",  "size": 0,  "updateMode": "optional",  "minimumSupportedVersion": "string"}
Empty
{  "error": "Unknown app"}