Skip to main content

ProductDto

Product Data Transfer Object

idinteger<int64>required

Unique identifier of the product

Example: 1
moduleCodestringrequired

Module code (TF for Trade Finance, SCF for Supply Chain Finance)

Possible values: <= 10 characters

Example: TF
moduleNamestringrequired

Human-readable module name

Possible values: <= 100 characters

Example: Trade Finance
productCodestringrequired

Unique product code within the module

Possible values: <= 50 characters

Example: ILC
productNamestringrequired

Human-readable product name

Possible values: <= 200 characters

Example: Import Letter of Credit
descriptionstringnullable

Detailed description of the product

Possible values: <= 500 characters

Example: Product for managing Import Letter of Credit transactions
createdAtstring<date-time>

Timestamp when the product was created

Example: 2025-01-15T09:36:22.500Z
updatedAtstring<date-time>

Timestamp when the product was last updated

Example: 2025-01-15T09:36:22.500Z
ProductDto
{
"id": 1,
"moduleCode": "TF",
"moduleName": "Trade Finance",
"productCode": "ILC",
"productName": "Import Letter of Credit",
"description": "Product for managing Import Letter of Credit transactions",
"createdAt": "2025-01-15T09:36:22.500Z",
"updatedAt": "2025-01-15T09:36:22.500Z"
}