- added /update/enroll endpoint and enrollment logic - migrated update client to v1 api endpoints and bearer auth - implemented remote status reporting in backend and scripts - updated requirements and project status
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
get:
|
|
summary: Get active manifest
|
|
x-auth-scopes: [read_manifest]
|
|
parameters:
|
|
- name: project_id
|
|
in: path
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
description: Manifest
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/manifest.yaml'
|
|
examples:
|
|
default:
|
|
value:
|
|
version: 1.2.3
|
|
artifact_url: https://update.wlkns.org/v1/projects/demo/releases/1.2.3/artifact
|
|
sha256: 9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08
|
|
sig_url: https://update.wlkns.org/v1/projects/demo/releases/1.2.3/signature
|
|
'401':
|
|
description: Unauthorized
|
|
x-error-codes: [unauthorized]
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/error.yaml'
|
|
examples:
|
|
unauthorized:
|
|
value:
|
|
code: unauthorized
|
|
message: Missing or invalid token
|
|
'429':
|
|
description: Too Many Requests
|
|
x-error-codes: [rate_limited]
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/error.yaml'
|
|
examples:
|
|
rate_limited:
|
|
value:
|
|
code: rate_limited
|
|
message: Too many requests
|