SuperTokens · Schema

RefreshSessionRequest

AuthenticationOpen SourceSession ManagementSocial LoginPasswordlessIdentityAuthorizationMulti-TenancyNode.jsSelf-Hosted

Properties

Name Type Description
refreshToken string
antiCsrfToken string
tenantId string
View JSON Schema on GitHub

JSON Schema

supertokens-refreshsessionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RefreshSessionRequest",
  "title": "RefreshSessionRequest",
  "type": "object",
  "required": [
    "refreshToken"
  ],
  "properties": {
    "refreshToken": {
      "type": "string"
    },
    "antiCsrfToken": {
      "type": "string"
    },
    "tenantId": {
      "type": "string"
    }
  }
}