Hand off a Sumsub share token for an external wallet user
Partner Auth: EIP-191 signature by the partner's registered backend key, with X-Api-Deadline and optional X-Api-PublicKey headers. See the Signature and verify guide.
Partner Auth EIP-191 signature over the canonical message plus the deadline.
Unix timestamp in seconds after which the signature is no longer valid.
Partner public key used to verify the signature.
Single-use Sumsub share token minted in your tenant with forClientId set to UR's clientId. Mint a fresh token for every handoff attempt.
The user's URID (NFT token id). Travels in the body in External Wallet Access Mode.
Business result envelope. code 0 means success; business rejections return HTTP 200 with a non-zero code.
Business result code. 0 means success; business rejections return HTTP 200 with a non-zero code.
Human-readable diagnostic for non-zero codes.
POST /api/v1/sumsub/reuse-share-token HTTP/1.1
Host: openapi.ur.app
X-Api-Signature: text
X-Api-Deadline: text
X-Api-PublicKey: text
Content-Type: application/json
Accept: */*
Content-Length: 56
{
"shareToken": "act-share-5f4e8c1b...",
"urId": 6233490772
}Business result envelope. code 0 means success; business rejections return HTTP 200 with a non-zero code.
{
"code": 0,
"message": "",
"data": {
"status": "passed",
"applicantId": "64f1a2b3c4d5e6f7a8b9c0d1",
"sessionId": "1c1f3904-6f2a-4c1e-9b7d-2f3a4b5c6d7e",
"attempt": 1
}
}Last updated