# `DocuSign.Api.IdentityVerifications`
[🔗](https://github.com/neilberkman/docusign_elixir/blob/v3.4.0/lib/docusign/api/identity_verifications.ex#L5)

API calls for all endpoints tagged `IdentityVerifications`.

# `account_identity_verification_get_account_identity_verification`

```elixir
@spec account_identity_verification_get_account_identity_verification(
  DocuSign.Connection.t(),
  String.t(),
  keyword()
) ::
  {:ok, DocuSign.Model.AccountIdentityVerificationResponse.t()}
  | {:error, Req.Response.t()}
```

Retrieves the Identity Verification workflows available to an account.
This method returns a list of Identity Verification workflows that are available to an account.  **Note:** To use this method, you must either be an account administrator or a sender.  ### Related topics  - [How to require ID Verification (IDV) for a recipient](/docs/esign-rest-api/how-to/id-verification/)  

### Parameters

- `connection` (DocuSign.Connection): Connection to server
- `account_id` (String.t): The external account number (int) or account ID GUID.
- `opts` (keyword): Optional parameters
  - `:identity_verification_workflow_status` (String.t): Filters the workflows returned according to status. Valid values:  - `active`: Only active workflows are returned. This is the default. - `deactivated`: Only deactivated workflows are returned. - `all`: All workflows are returned. 

### Returns

- `{:ok, DocuSign.Model.AccountIdentityVerificationResponse.t}` on success
- `{:error, Req.Response.t}` on failure

---

*Consult [api-reference.md](api-reference.md) for complete listing*
