info: name: SetBaseUrl type: http seq: 3 http: method: PUT url: '{{base_url}}/api/system/config' auth: inherit body: type: json jsonBody: |- { "base_url": "http://localhost:8765" } headers: - key: Authorization value: Bearer {{token}} - key: Content-Type value: application/json settings: encodeUrl: true timeout: 0 followRedirects: true maxRedirects: 5 docs: |- ## Set Base URL Configures the server's base_url during initial dev database setup. Must be run after RegisterUser (which provides the auth token) and before any library/device creation (which require setup to be complete). **Method:** PUT **Endpoint:** /api/system/config **Auth:** Bearer token (from RegisterUser)