# SignUpVerificationResource

An interface that represents the state of the verification process for a sign-up attempt.

| Name                                                    | Type                                          | Description                                                                                                           |
| ------------------------------------------------------- | --------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| attempts                                                | number | null                                | The number of attempts made.                                                                                          |
| channel?                                                | PhoneCodeChannel                              | (Optional) The channel used for delivery of phone code verification, if applicable. For example, 'sms' or 'whatsapp'. |
| error                                                   | ClerkAPIError | null                         | The most recent error encountered during verification.                                                                |
| expireAt                                                | Date | null                                  | The time the verification will expire at.                                                                             |
| externalVerificationRedirectURL                         | URL | null                                   | The redirect URL for an external verification.                                                                        |
| nonce                                                   | string | null                                | A unique nonce associated with the verification.                                                                      |
| message                                                 | string | null                                | A human-readable message about the verification attempt or its status, if available.                                  |
| unverified: The verification has not been verified yet. | verified: The verification has been verified. |                                                                                                                       |
| strategy                                                | string | null                                | The strategy used for verification.                                                                                   |
| verifiedAtClient                                        | string | null                                | The client ID where the verification was completed.                                                                   |

| Name                | Type      | Description                                              |
| ------------------- | --------- | -------------------------------------------------------- |
| supportedStrategies | string[] | The strategies that are supported for this verification. |

## Methods

### `verifiedFromTheSameClient()`

A check to see if the verification was verified from the same client as the parent sign-in or sign-up attempt. For example, checking if the verification was verified from the same browser as the parent sign-in or sign-up attempt.

```typescript
function verifiedFromTheSameClient(): boolean
```

---

## Sitemap

[Overview of all docs pages](https://clerk.com/docs/llms.txt)
