POST
/
api
/
auth
/
verify-dynamic
{
  "token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9..."
}
{
  "success": true,
  "data": {
    "user": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "user@example.com",
      "dynamicUserId": "dyn_123456",
      "tier": "silver"
    },
    "sessionId": "sess_abc123xyz"
  }
}

Body

token
string
required
The JWT token from Dynamic authentication

Response

user
object
The authenticated user object
sessionId
string
Session token for subsequent API requests
{
  "token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9..."
}
{
  "success": true,
  "data": {
    "user": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "user@example.com",
      "dynamicUserId": "dyn_123456",
      "tier": "silver"
    },
    "sessionId": "sess_abc123xyz"
  }
}

Body

application/json

Response

200
application/json

Token verified successfully

The response is of type object.