Get Account Report Request by ID
Overview​
GetNpsAccountReportRequestByIdQuery retrieves the full detail of a single camt.060 account report request, including all linked camt.052/053 report records received in response.
Command Details​
- Command:
GetNpsAccountReportRequestByIdQuery - Type: Query
API Endpoint​
POST /api/bpm/cmd
Request Structure​
| Field | Type | Required | Description |
|---|---|---|---|
id | int | Yes | Internal ID of the account report request |
Try It Out​
POST
/api/bpm/cmdGetNpsAccountReportRequestByIdQueryRequest Body
Response Structure​
{
"isSuccessful": true,
"statusCode": "00",
"data": {
"id": 201,
"msgId": "CAMT060-20260101-001",
"direction": "outbound",
"accountNumber": "0123456789",
"reportType": "camt.052",
"periodFrom": "2026-01-01T00:00:00Z",
"periodTo": "2026-01-01T23:59:59Z",
"counterpartBankCode": "000014",
"status": "Fulfilled",
"createdAt": "2026-01-01T08:00:00Z",
"updatedAt": "2026-01-01T08:05:00Z",
"reports": [
{
"id": 301,
"msgId": "CAMT052-20260101-001",
"reportType": "camt.052",
"direction": "inbound",
"accountNumber": "0123456789",
"openingBalance": 1000000.00,
"closingBalance": 950000.00,
"entryCount": 3,
"processedAt": "2026-01-01T08:05:00Z",
"hasRawXml": true
}
],
"totalReports": 1
}
}
Report Record Fields​
| Field | Type | Description |
|---|---|---|
msgId | string | camt.052/053 message ID |
reportType | string | "camt.052" (intraday) or "camt.053" (end-of-day) |
openingBalance | decimal | Account opening balance for the period |
closingBalance | decimal | Account closing balance for the period |
entryCount | int | Number of transaction entries in the report |
hasRawXml | bool | true if the raw ISO 20022 XML is stored |
Related Operations​
- Get NPS Account Report Requests — List all camt.060 requests