v1

latestOpenAPI 3.0.02026-07-2468247202.3 KB
KYB > Verification (Profile-Based)

Renew business verification URL

Renew/extend the expiry time of a business verification session. The new expiry time must be within 90 days from the current time.

post/verify/renew_business_verification_url

Request body

verification_session_idstring required

The verification session ID to renew

expires_atinteger required

Unix timestamp in milliseconds for the new expiry time. Must be within 90 days from current time.

Example request

{
  "verification_session_id": "550e8400-e29b-41d4-a716-446655440000",
  "expires_at": 1234567890000
}

Response

Successful operation

verification_session_idstring

The verification session ID that was renewed

expires_atinteger

The new expiry time as Unix timestamp in milliseconds

Example response

{
  "verification_session_id": "550e8400-e29b-41d4-a716-446655440000",
  "expires_at": 1234567890000
}