Skip to main content
POST
/
client_sessions
/
grant_access
await seam.clientSessions.grantAccess({
  client_session_id: "3ada79d3-2848-4320-b2ef-a82e1e6dafac",
  user_identifier_key: "jane_doe",
  connected_account_ids: ["c35ecf64-474a-466a-95a6-7b35cb4c8bb4"],
  connect_webview_ids: ["dad03fb2-f801-449c-ab88-0529728c7c38"],
  user_identity_id: "bde98963-3615-4e92-943e-17de3017232b",
});

/*
// void
*/
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
client_session_id
string

ID of the client session to which you want to grant access to resources.

connect_webview_ids
string[]

IDs of the Connect Webviews that you want to associate with the client session.

connected_account_ids
string[]

IDs of the connected accounts that you want to associate with the client session.

user_identifier_key
string

Your user ID for the user that you want to associate with the client session.

user_identity_id
string

ID of the user identity that you want to associate with the client session.

user_identity_ids
string[]
deprecated

IDs of the user identities that you want to associate with the client session.

Required array length: 1 element

Response

OK

The response is of type object.