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

# Sumsub Token Sharing

> If you already use Sumsub as your compliance vendor, token sharing lets you reuse the verification data you have already collected with DCS, so your users do not have to verify twice. This page covers the two sharing modes (agreed offline, not API fields), the two integration directions for a data provider and a data recipient, and how to pass kycInfo.sumsubShareToken when applying for a card.

## 📄 Guide

If you already use [Sumsub](https://sumsub.com) as your compliance (identity verification) vendor, you can share the verification data you have collected with DCS through Sumsub's **Sharing Partners** mechanism. This simplifies KYC, because end users do not have to complete identity verification a second time on the DCS side.

Once integration is complete, you pass a Sumsub **share token** in the card application request (field `kycInfo.sumsubShareToken`). DCS uses that token to fetch and reuse the user's verification data from Sumsub, and the application then continues through the rest of KYC review.

> Sumsub token sharing must be configured once in **each of the two environments, sandbox (UAT) and production (PROD)**. A sandbox token cannot be used in production and vice versa, so always confirm that the environments match when configuring.

## Two integration directions

Depending on who collects the verification data and who reuses it, there are two directions in which the token is added between you and DCS. Follow the steps that match your actual role.

<Frame>
  <img className="block dark:hidden" src="https://mintcdn.com/dcs-0bf7a937/oUoeUKtwWWK2o-Li/imgs/en/diagrams/va-kyc-vendor-share-light.svg?fit=max&auto=format&n=oUoeUKtwWWK2o-Li&q=85&s=dba0fd1b19bce6aa20b155ff4b3e7321" alt="Two directions for sharing a Sumsub token" width="615" height="512" data-path="imgs/en/diagrams/va-kyc-vendor-share-light.svg" />

  <img className="hidden dark:block" src="https://mintcdn.com/dcs-0bf7a937/oUoeUKtwWWK2o-Li/imgs/en/diagrams/va-kyc-vendor-share-dark.svg?fit=max&auto=format&n=oUoeUKtwWWK2o-Li&q=85&s=c74daa49846eb8e5963bbe3e6416fe30" alt="Two directions for sharing a Sumsub token" width="615" height="512" data-path="imgs/en/diagrams/va-kyc-vendor-share-dark.svg" />
</Frame>

### configure the sharing direction that matches your role

**If you are the data provider** (you collect the verification data and share it with DCS):

1. Obtain the UAT and PROD partner tokens from your DCS contact.
2. On your Sumsub platform, go to **Sharing Partners** (see the [Sumsub documentation](https://docs.sumsub.com/docs/manage-sharing-partners)) and add the token as prompted.
3. Verify with your DCS contact: the name you registered with Sumsub should now be visible on the DCS Sumsub platform.

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/somsub-token-pro.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=f6f3dca8726935752c17b4512e983d66" alt="Data provider: add the token under Sharing Partners on your own Sumsub platform" width="2358" height="1454" data-path="imgs/somsub-token-pro.png" />
</Frame>

**If you are the data recipient** (DCS collects the verification data and shares it with you, or you need to give DCS your token):

1. Obtain your UAT and PROD tokens on your Sumsub platform and share them with your DCS contact.
2. After DCS has added them, confirm on your Sumsub platform that DCS appears in the **Donor list**, and let DCS know the result.

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/somsub-token-con.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=20a55cdb171c16df016e8b9c442bb2e0" alt="Data recipient: confirm that DCS appears in the Donor list on your own Sumsub platform" width="2346" height="1456" data-path="imgs/somsub-token-con.png" />
</Frame>

### Step 3: generate the share token

Generate a share token for the target applicant on the Sumsub side. A share token looks like `_act-sbx-***` (sandbox) or `_act-***` (production); these are **illustrative only, so never write a real token anywhere**.

> Sumsub share tokens are normally single-use, so generate a new token for every application you submit. The environment (sandbox or production) must match the DCS environment you are currently integrating with.

### Step 4: use the share token in a card application request

In the virtual card application request POST `/card/v1/virtual-card/apply`, put the generated share token in `kycInfo.sumsubShareToken`.

| Field                      | Type   | Required | Constraint         | Description                                                                       |
| -------------------------- | ------ | -------- | ------------------ | --------------------------------------------------------------------------------- |
| `kycInfo.sumsubShareToken` | string | Yes      | Max 500 characters | Sumsub share token; DCS uses it to reuse the user's verification data from Sumsub |

<Warning>
  **There is no mode field in `kycInfo`**: within the card application body, `sumsubShareToken` is the only Sumsub-token-related field. There is **no** mode enum (such as `kycSubmitMode` or `sumsubShareTokenMode`) — the sharing relationship is decided by the Sharing Partners configuration in Sumsub and by your contract, and is never carried in the request body.
</Warning>

Besides `sumsubShareToken`, `kycInfo` must also carry data that is not fetched from Sumsub, such as `email`, the POA fields `poaDocType` / `poaDocUrlList` / `poaDocDate` / `addressLine1` / `city` / `country`, and the employment and source-of-funds fields `employmentStatus` / `occupation` / `sourceOfFunds` / `sourceOfWealth`. The card application endpoint specification is authoritative for the complete field list.

## Sample request fragment (masked)

> Every value in the `kycInfo` fragment below is a placeholder. **Never write real user PII (phone number, email, identity document, address) or a real token.**

```json theme={null}
{
  "externalUserId": "<externalUserId>",
  "categoryId": 0,
  "applyRef": "<applyRef-idempotency-key>",
  "kycInfo": {
    "sumsubShareToken": "_act-sbx-***",
    "email": "user@example.com",
    "occupation": "<occupation>",
    "sourceOfFunds": "<sourceOfFunds>"
  }
}
```

## Sandbox testing: generate a simulated KYC token

During sandbox (UAT) integration testing, if you do not yet have a working real Sumsub share token, you can call the **simulated token endpoint** provided by DCS to generate a test token:

POST `/simulation/v1/generate-kyc-token`

| Parameter        | Type   | Required | Description      |
| ---------------- | ------ | -------- | ---------------- |
| `externalUserId` | string | Yes      | External user ID |

The response envelope is always `{ code, message, messageDetail, data }` (there is no `success` boolean), and the simulated token is returned in `data.token`. Note that `messageDetail` is an object (`message` / `title` / `type` / `icon` / `action` / `linkTitle` / `linkUrl`, all empty on a normal success) rather than `null`:

```json theme={null}
{
  "code": "<success-code>",
  "message": "",
  "messageDetail": {
    "message": "",
    "title": "",
    "type": "",
    "icon": "",
    "action": "",
    "linkTitle": "",
    "linkUrl": ""
  },
  "data": {
    "token": "<simulated-token>"
  }
}
```

<Warning>
  **This token is for simulation and sandbox use only.** It is a different thing from a real Sumsub share token in production, so do not mix the two and never use it in production.
</Warning>

## Troubleshooting

If Sumsub token sharing is not working as expected, work through these common causes:

| Problem                                    | Symptom                                                                         | Diagnosis and fix                                                                                                                                                                                                                                                                                                                                                               |
| ------------------------------------------ | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Token already used                         | After the application is submitted, the token is reported as invalid or expired | Sumsub share tokens are **single-use only**. Generate a fresh share token for the same applicant for every new card application, and never reuse an old one.                                                                                                                                                                                                                    |
| Sandbox and production mismatch            | The token works in one environment but is rejected in the other                 | The environment in which you generated the token in Sumsub (sandbox or production) must match the DCS environment you are integrating with. A sandbox token cannot be used against DCS production, and vice versa. When switching environments, check the environment indicator at the bottom of the Sumsub dashboard (a yellow banner means sandbox mode).                     |
| Required fields missing on the Sumsub side | The KYC application fails to be created, or the review is sent back             | If the applicant record on your Sumsub side is missing fields that DCS requires (name, date of birth, nationality, address, and so on), DCS cannot complete the review. **Ask DCS in advance for the list of fields your Program requires on the Sumsub side**, and make sure every one of them is fully populated in the applicant record before you generate the share token. |

> If none of the above resolves the issue, contact DCS technical support with the exact error message and the time it occurred.

## The Sumsub POI / POA configuration baseline (required reading)

<Info>
  for the Sumsub token you send to DCS to pass verification, your POI (proof of identity) and POA (proof of address) configuration in the Sumsub console **must match DCS exactly**. Follow the screenshots below closely; a mismatched configuration will cause the token to fail verification and will hold up your launch.

  This baseline may be adjusted from time to time as compliance or regulatory requirements change, so DCS's latest notice always prevails. For the table of accepted document types by country and when an additional POA is required, see [About KYC Documents](./kyc-documents).
</Info>

### Part 1: Setting for POI (proof of identity)

#### 1. ID Verification

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor1.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=a647bde810af61545616bd83b2e73a8e" alt="ID Verification" width="632" height="757" data-path="imgs/sumsubKycVendor1.png" />
</Frame>

#### 2. Supported ID Documents

##### 2.1 Blacklisted countries (34)

None of the following documents are accepted: passport, ID card, driving license or residence permit.

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor2.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=fa30fabeffd4e4c6bfdf6fe19e1c5f83" alt="Blacklist countries" width="1628" height="190" data-path="imgs/sumsubKycVendor2.png" />
</Frame>

Blacklisted countries (34): Afghanistan, Belarus, Bosnia and Herzegovina, Burundi, Central African Republic, Congo (DRC), Cuba, Guatemala, Guinea, Guinea-Bissau, Haiti, Iran, Iraq, Lebanon, Libya, Mali, Moldova, Montenegro, Myanmar, Nicaragua, Niger, North Korea, Russia, Serbia, Somalia, South Sudan, Sudan, Syria, Tunisia, Turkey, Ukraine, Venezuela, Yemen, Zimbabwe.

##### 2.2 POI accepted as POA for nine designated countries

Supported countries: Taiwan, Australia, Japan, South Korea, Vietnam, the Philippines, Malaysia, Thailand and Singapore. Configure the accepted document types and subtypes for each country in Sumsub as shown in the screenshots below.

**Taiwan** — passport and ID card accepted (subtype `twn.id.type1` only)

<Columns cols={3}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor3.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=70c666abc48ee888893bb0f8843f035a" width="1612" height="209" data-path="imgs/sumsubKycVendor3.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor4.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=78e87d10022c0842916817138d4b6edc" width="472" height="902" data-path="imgs/sumsubKycVendor4.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor5.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=b57f618d3c2b1b3cb0af0f4696ec2a9d" width="437" height="900" data-path="imgs/sumsubKycVendor5.png" />
  </Frame>
</Columns>

**Australia** — passport only

<Columns cols={2}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor6.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=e7577b0a26e6c8d09c58346382abd0e9" width="1635" height="182" data-path="imgs/sumsubKycVendor6.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor7.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=65f0ea02bf26200007e5c6dd8a1b51f4" width="445" height="903" data-path="imgs/sumsubKycVendor7.png" />
  </Frame>
</Columns>

**Japan** — passport, My Number Card and driving license accepted (the IP address must be in Japan; if it is not, the user must submit a passport for verification)

<Columns cols={4}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor8.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=6522baebb6340bb715112176115bdc6d" width="1470" height="251" data-path="imgs/sumsubKycVendor8.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor9.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=a652e9fe9cc2ac542bf0094c92f5d704" width="449" height="900" data-path="imgs/sumsubKycVendor9.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor10.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=d995ffec65d5b238142a688b17f8696d" width="442" height="903" data-path="imgs/sumsubKycVendor10.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor11.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=25f0425dc15634f9c7dcf022c92094ca" width="444" height="902" data-path="imgs/sumsubKycVendor11.png" />
  </Frame>
</Columns>

**South Korea** — passport and ID card accepted (subtype `kor.id.type1` only)

<Columns cols={3}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor12.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=4ce6200c3aaa741fcb6a6d9d21477108" width="1466" height="260" data-path="imgs/sumsubKycVendor12.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor13.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=10d16ca8f801909a26d6f9fec8950ebb" width="440" height="900" data-path="imgs/sumsubKycVendor13.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor14.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=a169d7c0f3f6a0f41642d913a4c86b09" width="440" height="904" data-path="imgs/sumsubKycVendor14.png" />
  </Frame>
</Columns>

**Vietnam** — passport, ID card (subtypes `vnm.id.type3` and `vnm.id.type4` only) and driving license (subtype `vnm.drvlic.type1` only) accepted

<Columns cols={4}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor15.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=223a55781073a7bffa2ec2e86a6f653e" width="1586" height="236" data-path="imgs/sumsubKycVendor15.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor16.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=a7b706990436c59ed12b3927050995e7" width="433" height="903" data-path="imgs/sumsubKycVendor16.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor17.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=8b1393edd9f87f7816fcfebca99de95c" width="446" height="896" data-path="imgs/sumsubKycVendor17.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor18.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=5a889b8e5cb4212115062cdccde28419" width="441" height="903" data-path="imgs/sumsubKycVendor18.png" />
  </Frame>
</Columns>

**Philippines** — passport, ID card (subtype `phl.id.type11` only) and driving license (subtype `phl.drvlic.type1` only) accepted

<Columns cols={4}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor19.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=66cc9dde8503f20aa0e95341dd54d4c6" width="1582" height="224" data-path="imgs/sumsubKycVendor19.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor20.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=b953938313a4b94e2bbf7cc301e5a7f1" width="662" height="1230" data-path="imgs/sumsubKycVendor20.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor21.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=550f7d7de10d9f59a874968a44401d93" width="397" height="906" data-path="imgs/sumsubKycVendor21.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor22.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=744a77abc21d2a5ada3ffb0fd516f4af" width="444" height="904" data-path="imgs/sumsubKycVendor22.png" />
  </Frame>
</Columns>

**Malaysia** — passport, ID card (subtype `mys.id.type1` only) and driving license (subtype `mys.drvlic.type1` only) accepted

<Columns cols={4}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor23.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=0359071646485b67e677103d4d807a64" width="3499" height="241" data-path="imgs/sumsubKycVendor23.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor24.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=d05e124ff9ae68e595a27f48c66b104a" width="658" height="1209" data-path="imgs/sumsubKycVendor24.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor25.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=7b9ad10b42ddf07cc47a1fa05ba2ad1b" width="443" height="898" data-path="imgs/sumsubKycVendor25.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor26.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=93e776a0d22f2a10bd6cf141ebfbf8e9" width="390" height="901" data-path="imgs/sumsubKycVendor26.png" />
  </Frame>
</Columns>

**Thailand** — passport and Thai National ID Card accepted

<Columns cols={3}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor27.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=4c5bb40280273ce89a7cae6b66ed8b56" width="1551" height="238" data-path="imgs/sumsubKycVendor27.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor28.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=a6b6d68abe6b3d0edcc247df7e11b0ac" width="652" height="1207" data-path="imgs/sumsubKycVendor28.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor29.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=8eba780ffa1046ff9e6babb4c0c4d2bf" width="658" height="1206" data-path="imgs/sumsubKycVendor29.png" />
  </Frame>
</Columns>

**Singapore** — passport and Singapore identity card (NRIC) accepted

<Columns cols={3}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor30.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=3c1b2a4ed7dfb898476d039ed2e61386" width="3475" height="231" data-path="imgs/sumsubKycVendor30.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor31.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=6d1378a8ab033ec408d55638a4f7faff" width="475" height="896" data-path="imgs/sumsubKycVendor31.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor32.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=6a3f738eae031a5ce2c24100603ba8b5" width="656" height="1240" data-path="imgs/sumsubKycVendor32.png" />
  </Frame>
</Columns>

#### 2.3 USA

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor33.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=ce10b13c7c7349243cca6879458bd56a" alt="USA" width="1677" height="161" data-path="imgs/sumsubKycVendor33.png" />
</Frame>

#### 2.4 Other countries

Passport only, single-sided; ID cards, driving licenses and residence permits are not accepted.

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor34.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=5af0d474890c4ed311e068d969710706" alt="Other countries" width="1612" height="184" data-path="imgs/sumsubKycVendor34.png" />
</Frame>

### Part 2: Setting for POA (proof of address)

#### 1. Workflow builder

If the POI document carries no address, the user goes on to POA (proof of address) verification. If the POI document does carry an address but the address country is Japan and the user's IP is outside Japan, the user must additionally submit a passport to confirm nationality.

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor35.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=434858e7846d4603681002ccff0a3882" alt="POA Workflow builder" width="590" height="370" data-path="imgs/sumsubKycVendor35.png" />
</Frame>

#### 2. User verification

Note: proof of address (POA) is accepted only from designated countries, as set out in your agreement with DCS.

<Columns cols={3}>
  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor36.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=e40924aef14fe2e8ee875c4b2631fff2" width="554" height="744" data-path="imgs/sumsubKycVendor36.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor37.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=68d43dbafbe9fa413cae8a59f0642fdb" width="504" height="656" data-path="imgs/sumsubKycVendor37.png" />
  </Frame>

  <Frame>
    <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor38.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=91e2669a8b7e5de4ad96e199d2d0245e" width="757" height="346" data-path="imgs/sumsubKycVendor38.png" />
  </Frame>
</Columns>

#### 3. Verification level

**USA residents need to be rejected.**

<Frame>
  <img src="https://mintcdn.com/dcs-0bf7a937/U5My61eeN1_eDSDM/imgs/sumsubKycVendor39.png?fit=max&auto=format&n=U5My61eeN1_eDSDM&q=85&s=ea4de48cbf0ecffd263da9c1c202e100" alt="Verification level - USA residents rejected" width="547" height="107" data-path="imgs/sumsubKycVendor39.png" />
</Frame>

***

## Next steps

* The resubmission path when shared data is rejected: [KYC Rejections and Resubmissions](./kyc-rejections)
* Acceptable document types and POA requirements: [KYC Documents](./kyc-documents) (same group)
* Compliance capability overview and navigation to each sub-page: [Compliance Overview](../basic-concepts/compliance-kyc-flow)
* Complete field specification for the card application endpoint: `POST /card/v1/virtual-card/apply`
