> ## Documentation Index
> Fetch the complete documentation index at: https://velt.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Email Verification Status

Use this API to check whether a given email address has been verified for workspace ownership.

<Info>
  This is a **public endpoint** — no authentication headers are required.
</Info>

# Endpoint

`POST https://api.velt.dev/v2/workspace/email/status`

# Body

#### Params

<ParamField body="data" type="object" required>
  <Expandable title="properties">
    <ParamField body="ownerEmail" type="string" required>
      Email address to check verification status for.
    </ParamField>
  </Expandable>
</ParamField>

# Example Request

```JSON theme={null}
{
  "data": {
    "ownerEmail": "owner@example.com"
  }
}
```

# Example Response

#### Success Response (verified)

```JSON theme={null}
{
  "result": {
    "status": "success",
    "message": "Email verified and workspace reactivated",
    "data": {
      "verified": true
    }
  }
}
```

#### Success Response (not yet verified)

```JSON theme={null}
{
  "result": {
    "status": "success",
    "message": "Email not yet verified",
    "data": {
      "verified": false
    }
  }
}
```

#### Failure Response

##### If email is not found

```JSON theme={null}
{
  "error": {
    "status": "NOT_FOUND",
    "message": "Email not found."
  }
}
```

<ResponseExample>
  ```js theme={null}
  {
    "result": {
      "status": "success",
      "message": "Email verified and workspace reactivated",
      "data": {
        "verified": true
      }
    }
  }
  ```
</ResponseExample>
