---
title: "Create Session Token"
method: POST
path: "/auth/tokens"
tags: ["Auth"]
---

# Create Session Token

`POST /auth/tokens`

Creates a session token for an implementer to utilize for subsequent API requests.

## Request body

- CreateSessTokenReq
  - `clientID` string, required — The identifier of the client accessing the DriveWealth system.
  - `clientSecret` string, required — The secret of the client accessing the DriveWealth system.

## Response `200`

Creating Session Token was Successful.

- CreateSessToken
  - `token_type` 'Bearer' — The type of token that was generated.
  - `expires_in` string — The length of time in seconds for which the session token is valid.
  - `access_token` string — The session token.
  - `scope` string — The scope of permission set for the JSON Web Token (JWT).

---

[API](https://skmtc.net/drivewealth/apis/authentication-apis.md) · [All operations](https://skmtc.net/drivewealth/apis/authentication-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/drivewealth/authentication-apis/revisions/9fced6d0ac41/schema)
