From 769e8369ec5c85980bf44b88b6a36a0329b2af80 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Thu, 28 May 2026 09:23:36 +0000 Subject: [PATCH] docs(kyc): add required fields to identity document upload examples Update PASSPORT upload examples to include documentNumber and issuingAuthority fields, which are now required for identity documents after the document upload schema split in #517. Co-Authored-By: Claude Opus 4.5 --- mintlify/snippets/kyc/kyc-unregulated.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mintlify/snippets/kyc/kyc-unregulated.mdx b/mintlify/snippets/kyc/kyc-unregulated.mdx index 15f8b46b..73729234 100644 --- a/mintlify/snippets/kyc/kyc-unregulated.mdx +++ b/mintlify/snippets/kyc/kyc-unregulated.mdx @@ -140,6 +140,8 @@ The shape of the flow depends on the customer type: -u "$GRID_CLIENT_ID:$GRID_CLIENT_SECRET" \ -F "documentHolder=Customer:019542f5-b3e7-1d02-0000-000000000001" \ -F "documentType=PASSPORT" \ + -F "documentNumber=A12345678" \ + -F "issuingAuthority=U.S. Department of State" \ -F "country=US" \ -F "file=@./passport.jpg" ``` @@ -262,6 +264,8 @@ The shape of the flow depends on the customer type: -u "$GRID_CLIENT_ID:$GRID_CLIENT_SECRET" \ -F "documentHolder=BeneficialOwner:019542f5-b3e7-1d02-0000-00000000abcd" \ -F "documentType=PASSPORT" \ + -F "documentNumber=B98765432" \ + -F "issuingAuthority=U.S. Department of State" \ -F "country=US" \ -F "file=@./owner-passport.jpg" ```