Step 2 Verify Code and Get ID-Token

HTTP Request Method

POST

HTTP Request URL

https://login.web3connect.jp/api/v1/generic_email_signup_signin_step2

HTTP Request Body <JSON>

{
  "verification_token": "LgTLxnzhqb9gfLOp",
  "code": "123456" // 6-digit code
}

HTTP Response Body <JSON>

{
  "status": "ok",
  "result": {
    "email": "abc@def.com",
    "id_wallet_address": "0xfedbd...",
    "id_wallet_address_eth": "0xfedbd...",
    "id_wallet_address_suri": "5ComKy6XdRu7wT...",
    "id_token": "eyJhbGc..."
  },
  "error": null
}

Last updated