Skip to main content
POST
/
{workspaceId}
/
projects
/
{projectName}
/
auth-sessions
/
recorder
/
start
startAuthSessionRecorder
import { IntunedClient } from "@intuned/client";

const intunedClient = new IntunedClient({
  workspaceId: "123e4567-e89b-12d3-a456-426614174000",
  apiKey: "<YOUR_API_KEY_HERE>",
});

async function run() {
  const result = await intunedClient.project.authSessions.recorder.start("my-project", {
    authSessionId: "auth-session-123",
    proxy: "http://proxy.example.com:8080",
  });

  console.log(result);
}

run();
{
  "recorder_url": "http://recorder.example.com/session/123"
}

Authorizations

x-api-key
string
header
required

API Key used to authenticate your requests. How to create one.

Path Parameters

workspaceId
string<uuid>
required

Your workspace ID. How to find it?

projectName
string
required

Your project name. It is the name you provide when creating a project.

Body

application/json

Start auth session recorder input schema

authSessionId
string
default:4706f3b2-966e-43a3-9883-eb5da6302cda

The unique identifier for the authentication session

Minimum length: 3
Example:

"auth-session-123"

proxy
string

Response

201 - application/json

Recorder session started

recorder_url
string<uri>
required