---
title: "Validate JWT token"
method: POST
path: "/api/v2/organizations/{orgSlug}/auth/verify"
tags: ["Auth"]
---

# Validate JWT token

`POST /api/v2/organizations/{orgSlug}/auth/verify`

Validate the provided JWT token and retrieve user information from the token. 

 Required scopes: `flex.user.auth.verify`

## Path parameters

- `orgSlug` string, required

## Request body

- VerifyTokenRequestDto
  - `token` string, required — The JWT token to verify.

## Response `200`

- VerifyTokenResultDto
  - `isValid` boolean — A flag indicating whether the token is valid.
  - `user` string — The user reference.
  - `member` string — The _id of the member associated with the user.
  - `company` string — The _id of the company associated with the user.

---

[API](https://skmtc.dev/officernd/apis/authentication-api.md) · [All operations](https://skmtc.dev/officernd/apis/authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/officernd/authentication-api/revisions/6bcd33dc648e/schema)
