POST
/
{workspaceId}
/
projects
/
{projectName}
/
auth-sessions
/
recorder
/
start
Start recorder session for an auth session
curl --request POST \
  --url https://app.intuned.io/api/v1/workspace/{workspaceId}/projects/{projectName}/auth-sessions/recorder/start \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "authSessionId": "auth-session-123",
  "proxy": "http://proxy.example.com:8080"
}'
{
  "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:ccec5408-a67b-40d6-ba02-b0d2088116c3

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