UpdateDocument
Type: schema
TypeScript Definition
typescript
UpdateDocument: {{
document_number: string;
kyc_document_id: string;
note?: string;
/**
* Format: binary
* @description file attachment will be required or optional as per store setting.
*/
file?: string;
modified_reason: string;
};
/** UpdatePhysicalProductSubscription */
}OpenAPI Schema
json
{
"title": "UpdateDocument",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/UpdateDocument",
"description": "API reference for the UpdateDocument schema"
},
"required": [
"document_number",
"kyc_document_id",
"modified_reason"
],
"properties": {
"document_number": {
"type": "string"
},
"kyc_document_id": {
"type": "string"
},
"note": {
"type": "string"
},
"file": {
"description": "file attachment will be required or optional as per store setting.",
"type": "string",
"format": "binary"
},
"modified_reason": {
"type": "string"
}
},
"x-tags": [
"KYC"
]
}Auto-generated from OpenAPI spec and TypeScript definitions