---
title: "Verify contact"
method: POST
path: "/api/v1/verify-contact"
tags: ["External Wallet Access Mode"]
---

# Verify contact

`POST /api/v1/verify-contact`

Validates the final recipient and bank payload for a bank transfer and returns contactId, purposeId, and refId. Creditor name, street, city, and country should use Latin characters.

## Headers

- `tokenId` string, required
- `network` string, required
- `sign` string, required
- `hash` string, required
- `deadline` string, required

## Request body

- object
  - `account` string, required — Recipient IBAN or account number.
  - `bankName` string, required — Recipient bank name.
  - `bic` string, required — Recipient bank BIC.
  - `purpose` integer, required — Payment purpose ID from the payment purposes list.
  - `reference` string, required — Payment reference.
  - `creditor` object — Recipient details. Latin characters required.
    - `name` string
    - `street` string
    - `city` string
    - `zip` string
    - `country` string

## Response `200`

Response envelope. For the user API, retCode 0 means success; for the partner API, code 0 means success. Business rejections return HTTP 200 with a non-zero code.

- EwaEnvelope — Standard response envelope for the user API (api.ur.app).
  - `retCode` integer, required — 0 on success; non-zero indicates failure.
  - `retMsg` string, required — Human-readable message; error details when retCode is non-zero.
  - `result` unknown
  - `timeNow` integer — Server timestamp in milliseconds.

---

[API](https://skmtc.net/ur/apis/ur-api.md) · [All operations](https://skmtc.net/ur/apis/ur-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ur/ur-api/revisions/087dcf516ce2/schema)
