ποΈ Commerce
- Catalog
- Carts
- Coupons & Promotions
- Orders
- Shipping
- Payments
- Subscriptions
π Customers
ποΈ Engagement & Retention
- Campaigns
- Analytics
π§° Utilities
- Common
KYC
List all documents
List all documents added by a particular customer.
GET
/
customers
/
{id}
/
documents
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/customers/{id}/documents
{
"message": "<string>",
"success": true,
"content": {
"documents": [
{
"id": "<string>",
"document_number": "<string>",
"note": "<string>",
"status": "submitted",
"title": "<string>",
"file_url": "<string>",
"verification_type": "automatic",
"is_verified": true,
"verified_at": "2023-11-07T05:31:56Z",
"created_by": "customer",
"created_at": "2023-11-07T05:31:56Z",
"modified_by": "customer",
"modified_at": "2023-11-07T05:31:56Z",
"modified_reason": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
}
]
}
}
Path Parameters
customer id
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/customers/{id}/documents
{
"message": "<string>",
"success": true,
"content": {
"documents": [
{
"id": "<string>",
"document_number": "<string>",
"note": "<string>",
"status": "submitted",
"title": "<string>",
"file_url": "<string>",
"verification_type": "automatic",
"is_verified": true,
"verified_at": "2023-11-07T05:31:56Z",
"created_by": "customer",
"created_at": "2023-11-07T05:31:56Z",
"modified_by": "customer",
"modified_at": "2023-11-07T05:31:56Z",
"modified_reason": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.