List KYC documents
KYC
List KYC documents
Retrieves the list of KYC document types required for the store. Returns an array of Kyc Document objects defining document types, mandatory flags, and verification settings.
GET
List KYC documents
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Commerce Engine is now in early preview. Please report any issues or feedback to support@commercengine.io
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/store/kyc-document \
--header 'X-Api-Key: <api-key>'{
"message": "<string>",
"success": true,
"content": {
"kyc_documents": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"active": true,
"is_mandatory": true,
"is_attachment_required": true
}
],
"is_kyc_enabled": false
}
}Retrieves the list of KYC document types required for the store. Returns an array of Kyc Document objects defining document types, mandatory flags, and verification settings.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/store/kyc-document \
--header 'X-Api-Key: <api-key>'{
"message": "<string>",
"success": true,
"content": {
"kyc_documents": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"active": true,
"is_mandatory": true,
"is_attachment_required": true
}
],
"is_kyc_enabled": false
}
}Was this page helpful?