v1

latestOpenAPI 3.0.02026-08-0645062.8 KB

Generate access and refresh tokens

This endpoint generates access and refresh tokens based on the provided payload.

post/generate-integration-app-token

Request body

idstring
namestring

Example request

{
  "id": "user-123",
  "name": "John Doe"
}

Response

Tokens generated successfully

accessTokenstring
refreshTokenstring

Example response

{
  "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}