Get AuthSession creation result.
TypeScript
import { IntunedClient } from "@intuned/client"; const intunedClient = new IntunedClient({ workspaceId: "123e4567-e89b-12d3-a456-426614174000", apiKey: process.env["INTUNED_API_KEY"] ?? "", }); async function run() { const result = await intunedClient.project.authSessions.create.result("my-project", "aaaabbbCCCCdddd"); console.log(result); } run();
200
done
{ "status": "done", "authSessionId": "auth-session-123"}
API Key used to authenticate your requests. How to create one.
Your workspace ID. How to find it?
The name you assigned when creating the Project.
The ID for the operation. This is obtained from the start request.
AuthSession creation result
The unique identifier for the authentication session
3
"auth-session-123"