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
Example response
{
"sessionId": "vsess_abc123",
"verificationUrl": "https://verify.infinite.dev/?sessionId=vsess_abc123",
"expiresAt": "2026-01-09T10:30:00Z",
"status": "ACTIVE"
}