Fetch statement transactions for an entity
Retrieves paginated transactions belonging to a specific statement cycle for a given entity. Supports date range filtering via both request body and query parameters. Query parameter values take precedence if body date fields are absent.
Query Parameters
Page number for pagination (0-based, default: 0)
0Number of records per page (default: 999)
999Start date filter (yyyy-MM-dd); overridden by body field if present
dateEnd date filter (yyyy-MM-dd); overridden by body field if present
dateHeader Parameters
Tenant identifier for multi-tenancy support
Request Body
application/json
Entity identifier; also accepted as entity_id
Statement month in MMYYYY format; also accepted as stmt_month
Start date filter (yyyy-MM-dd)
dateEnd date filter (yyyy-MM-dd)
datePage number for pagination (0-based)
Number of records per page
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://uat-m2p-ccms.m2pfintech.com/statement/customer/fetchStatementTxns" \ -H "TENANT: string" \ -H "Content-Type: application/json" \ -d '{ "entityId": "string", "stmtMonth": "string" }'[
{
"transactionDate": "string",
"amount": "string",
"crDr": "string",
"txnCategory": "string",
"extTxnId": "string",
"merchantName": "string",
"billedStatus": "string",
"kitNo": "string",
"description": "string",
"txId": "string"
}
]{
"code": "string",
"message": "string",
"details": "string"
}{
"code": "string",
"message": "string",
"details": "string"
}{
"code": "string",
"message": "string",
"details": "string"
}Fetch list of statement data for an entity POST
Retrieves a list of historical statement summary records for a given entity and statement month, including credit/debit totals, EMI details, due amounts, and reward points.
Fetch transactions for an entity POST
Retrieves a paginated list of transactions for a given entity. Supports filtering by date range, transaction type, authorization status, and loan eligibility. The entityId and filters can be passed in the request body map or via query parameters.
