> For the complete documentation index, see [llms.txt](https://thxnet.gitbook.io/thxnet-developers-doc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://thxnet.gitbook.io/thxnet-developers-doc/reference/thxnet.-api/generic-sign-up-sign-in/step-2-verify-code-and-get-id-token.md).

# 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>

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

#### HTTP Response Body \<JSON>

```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
}
```
