1. Chizmis Authentication
Chizverse
  • ChizVerse Developer Docs
    • Getting Started
    • API Reference
      • Overview
      • Chizmis Authentication
        • Exchange for a ChizVerse Bearer
          POST
        • Hosted Client Login
          GET
        • Hosted Client Registration
          GET
        • Logout
          POST
        • Get Current Account
          GET
        • Validate Client Application
          GET
        • Login with Existing Session
          POST
        • Verify Session Key
          GET
      • Activity Tracking
        • Create Launch
        • Create Tracked Session
        • Get Session Checkpoint
        • Get Saved Player Progress
        • Ingest Event Batch
        • Get Game Leaderboard
      • ChizPay Wallet & Transactions
        • Get Wallet by Account ID
        • Transfer Wallet Balance
        • Get Wallet Transaction History
        • Debit Wallet
        • Credit Wallet
        • Get Game Ledger
    • SDK
    • Schemas
      • ExchangeForAChizVerseBearerResponse
      • ExchangeForAChizVerseBearerRequest
      • LogoutResponse
      • LogoutRequest
      • GetCurrentAccountResponse
      • ValidateClientApplicationResponse
      • LoginWithExistingSessionResponse
      • LoginWithExistingSessionRequest
      • VerifySessionKeyResponse
      • CreateLaunchResponse
      • CreateLaunchRequest
      • CreateTrackedSessionResponse
      • CreateTrackedSessionRequest
      • GetSessionCheckpointResponse
      • GetSavedPlayerProgressResponse
      • IngestEventBatchResponse
      • IngestEventBatchRequest
      • GetGameLeaderboardResponse
      • GetWalletByAccountIDResponse
      • TransferWalletBalanceResponse
      • TransferWalletBalanceRequest
      • GetWalletTransactionHistoryResponse
      • DebitWalletResponse
      • DebitWalletRequest
      • CreditWalletResponse
      • CreditWalletRequest
      • GetGameLedgerResponse
  1. Chizmis Authentication

Exchange for a ChizVerse Bearer

POST
/core/public/auth/chizmis
After receiving t from the Chizmis callback, exchange it for the ChizVerse bearer used by protected ChizVerse endpoints.

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Successful response.
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api-chizverse.beespokedev.com/core/public/auth/chizmis' \
--header 'Content-Type: application/json' \
--data '{
  "token": "<chizmis-callback-token>"
}'
Response Response Example
{
  "success": true,
  "response": {
    "token": "<chizverse-access-token>",
    "refreshToken": "<chizverse-refresh-token>",
    "user": {
      "id": 1024,
      "email": "juan@example.com"
    }
  }
}
Modified at 2026-07-30 06:57:15
Previous
Chizmis Authentication
Next
Hosted Client Login
Built with