Skip to content

Commit 4aafc69

Browse files
authored
Update README.md
1 parent 103a8cc commit 4aafc69

File tree

1 file changed

+4
-4
lines changed
  • docs/core-concepts/authentication/client-session-tokens

1 file changed

+4
-4
lines changed

docs/core-concepts/authentication/client-session-tokens/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can use client sessions in the following two ways:
3131

3232
## Create a Client Session for an Existing User and Retrieve the Session Token
3333

34-
To [create a client session](../../../api-clients/client_sessions/create.md) for an existing user with connected accounts in your workspace, include the IDs of the user's connected accounts (`connected_account_ids`) and [provide your own unique internal user ID (`user_identifier_key`)](../../../seam-components/overview/get-started-with-client-side-components.md#id-3-select-a-user-identifier-key). Then, use the generated client session token to retrieve and manage the resources authorized through the connected accounts associated with this client session.
34+
To [create a client session](../../../api/client_sessions/create.md) for an existing user with connected accounts in your workspace, include the IDs of the user's connected accounts (`connected_account_ids`) and [provide your own unique internal user ID (`user_identifier_key`)](../../../seam-components/overview/get-started-with-client-side-components.md#id-3-select-a-user-identifier-key). Then, use the generated client session token to retrieve and manage the resources authorized through the connected accounts associated with this client session.
3535

3636
{% tabs %}
3737
{% tab title="JavaScript" %}
@@ -61,7 +61,7 @@ Client session token: seam_cst1891oqCmE_6dBwV8PJ2Ffoe9dWYVyMfVHq
6161

6262
## List Client Sessions
6363

64-
You can [list all client sessions](../../../api-clients/client_sessions/list.md) within your workspace.
64+
You can [list all client sessions](../../../api/client_sessions/list.md) within your workspace.
6565

6666
{% tabs %}
6767
{% tab title="JavaScript" %}
@@ -113,7 +113,7 @@ await seam.clientSessions.list()
113113

114114
## Get a Client Session
115115

116-
To [get a specific client session](../../../api-clients/client_sessions/get.md), provide the client session ID (`client_session_id`).
116+
To [get a specific client session](../../../api/client_sessions/get.md), provide the client session ID (`client_session_id`).
117117

118118
{% tabs %}
119119
{% tab title="JavaScript" %}
@@ -150,7 +150,7 @@ const clientSession = await seam.clientSessions.get({
150150

151151
## Delete a Client Session
152152

153-
To [delete a client session](../../../api-clients/client_sessions/delete.md), provide the client session ID (`client_session_id`).
153+
To [delete a client session](../../../api/client_sessions/delete.md), provide the client session ID (`client_session_id`).
154154

155155
{% tabs %}
156156
{% tab title="JavaScript" %}

0 commit comments

Comments
 (0)