GET
/
v1
/
kyc
/
:userid
/
export
/
:exportType
curl https://v2.app-dev.zquence.com/v1/kyc/6a75f49ff66d6418929ce839/export/form \
  -H "x-api-key: $ZQUENCE_PUBLIC_KEY" \
  -H "x-api-secret: $ZQUENCE_SECRET_KEY" \
  --output kyc-form.pdf
Requires kyc.read. Send both x-api-key and x-api-secret. The API key must belong to the same tenant and environment as the requested user.
userid
string
required
exportType
string
required
summary, detail, or form. Any other value returns 400.
locale
string
Optional locale. Supported values: en, es.
Returns 404 when the user does not have a KYC record yet.
curl https://v2.app-dev.zquence.com/v1/kyc/6a75f49ff66d6418929ce839/export/form \
  -H "x-api-key: $ZQUENCE_PUBLIC_KEY" \
  -H "x-api-secret: $ZQUENCE_SECRET_KEY" \
  --output kyc-form.pdf

Error codes

StatusMeaning
400exportType is not summary, detail, or form.
401The API key pair is missing or invalid.
403The API key does not have kyc.read.
404The user has no KYC record in the selected tenant and environment.