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>",
"document_type": "gst",
"title": "<string>",
"description": "<string>",
"active": true,
"is_mandatory": true,
"is_attachment_required": true,
"verification_type": "auto"
}
],
"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>",
"document_type": "gst",
"title": "<string>",
"description": "<string>",
"active": true,
"is_mandatory": true,
"is_attachment_required": true,
"verification_type": "auto"
}
],
"is_kyc_enabled": false
}
}Was this page helpful?