# Verification Details

## Get investor verification details

## Investor verification

<mark style="color:blue;">`GET`</mark> `https://sec-id-api.securitize.io/v1/{clientId}/investor/verification`

Used to get latest verification status with errors if they exist

#### Path Parameters

| Name     | Type   | Description                                       |
| -------- | ------ | ------------------------------------------------- |
| clientId | string | Your application Client Id provided by Securitize |

#### Headers

| Name          | Type   | Description                                    |
| ------------- | ------ | ---------------------------------------------- |
| access-token  | string | Investor accessToken                           |
| authorization | string | Your application secret provided by Securitize |

{% tabs %}
{% tab title="200 " %}

```
{
  "status": 0,
  "data": {
    "investorId": "string",
    "status": "none",
    "createDate": "2020-05-27T18:13:51.193Z",
    "updateDate": "2020-05-27T18:13:51.193Z",
    "operatorFullName": "string",
    "isManual": true,
    "errors": [
      "string"
    ]
  },
  "error": {},
  "success": true
}
```

{% endtab %}

{% tab title="404 If investor never ran verification this call will return 404" %}

```
{
  "status": 0,
  "data": {},
  "error": {},
  "success": true
}
```

{% endtab %}
{% endtabs %}

Get investor Verification Details
