Commerce Engine is now in beta. We're working hard to make it better for you.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/store/kyc-document
{
"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
}
}
List all kyc documents added for a particular store.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/store/kyc-document
{
"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
}
}
OK
The response is of type object
.
Was this page helpful?