> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/authentication/llms.txt)
> Source: https://docs.saleor.io/api-reference/authentication/mutations/external-verify

# externalVerify Mutation

Verify external authentication data by plugin.

```graphql
externalVerify(
  input: JSONString!
  pluginId: String!
): ExternalVerify
```

Details

```graphql
type ExternalVerify {
  user: User
  isValid: Boolean!
  verifyData: JSONString
  accountErrors: [AccountError!]! @deprecated
  errors: [AccountError!]!
}
```

<a id="arguments"></a>

### Arguments

<a id="input"></a>

#### [`input`](#input) ● [`JSONString!`](/api-reference/miscellaneous/scalars/jsonstring.md)

The data required by plugin to proceed the verification.

<a id="plugin-id"></a>

#### [`pluginId`](#plugin-id) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

The ID of the authentication plugin.

<a id="type"></a>

### Type

<a id="externalverify"></a>

#### [`ExternalVerify`](/api-reference/authentication/objects/external-verify.md)

Verify external authentication data by plugin.
