featL add mre

This commit is contained in:
2026-05-12 20:36:59 +03:00
parent dddf0f401f
commit 1b4b7330c8
11 changed files with 113 additions and 23 deletions

View File

@@ -56,7 +56,7 @@ GET_KYC_SESSION_RESPONSES = {
response_model=BeorgKycCreateResponse,
responses=CREATE_KYC_RESPONSES,
summary='Start KYC session',
description='Creates a Beorg KYC session for one hour and returns link, user token and QR code.',
description='Creates a Beorg KYC session without link expiry at the issuer and persists it without local expiration.',
)
async def create_kyc(
auth: AuthContext = Depends(require_access_token),
@@ -71,7 +71,7 @@ async def create_kyc(
response_model=KycSessionResponse,
responses=GET_KYC_SESSION_RESPONSES,
summary='Get KYC session',
description='Returns latest KYC session status, link, QR code and expiration data.',
description='Returns latest KYC session; expires_at and expires_in are omitted when the session has no expiry.',
)
async def get_kyc_session(
auth: AuthContext = Depends(require_access_token),