POST /runs/:id/preview/login
POST
/runs/{id}/preview/login
const url = 'https://example.com/runs/example/preview/login';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/runs/example/preview/loginWarren-e1b0: POST, not GET — the bearer rides the Authorization header like every other /runs route instead of a ?token= query string that would land in history / Referer / proxy logs.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Responses
Section titled “Responses”Successful response.
default
Section titled “default”Error response (see src/core/errors.ts).
