Customers

Generate verification link for associated entity

Generate a KYC verification link for an existing individual associated entity. If the entity already has an active verification session, the existing link is returned. If the session has expired, the expiry is reset and the refreshed link is returned. Only individual associated entities are supported; business entities will return an error.

post/v1/customers/{customerId}/associated_entities/{id}/verification-link

Path parameters

customerIdstring required
Example:cus_1234567890abcdef

An ID that uniquely identifies a customer resource

idstring required
Example:asp_1234567890abcdef

An ID that uniquely identifies an associated entity resource

Headers

X-API-Keystring

API key

Response

Verification link generated or retrieved successfully

sessionIdstring required

Verification session ID

verificationUrlstring required

URL for the UBO to complete their verification

expiresAtstring required

When the verification link expires

status'PENDING' | 'ACTIVE' | 'IN_PROGRESS' | 'COMPLETED' | 'EXPIRED' | 'CANCELLED' | 'SUBMITTED' required

Current status of the verification session

Example response

{
  "sessionId": "vsess_abc123",
  "verificationUrl": "https://verify.infinite.dev/?sessionId=vsess_abc123",
  "expiresAt": "2026-01-09T10:30:00Z",
  "status": "ACTIVE"
}

Changes

No recorded changes to this endpoint across all 19 revisions of this API.