v1
latestOpenAPI 3.0.32026-07-1341895.4 KBGet report reconciliation results
After the results summary is available, use this endpoint to retrieve the reconciliation results for the monthly report. The API returns reconciliation results in paginated batches. These show which records were accepted and which were rejected, including error messages where applicable.
Optionally, include a page query parameter to request a specific page of results.
If the request is successful, the response includes:
- pagination information, including page number, total pages, and total records
- the reconciliation results for the current page, including record-level identifiers and any reconciliation errors
If the reconciliation results are not yet available, or if the specified page or report is not found, the API returns a 404 Not Found response.
Path parameters
A unique identifier assigned by HMRC to each approved ISA manager. Format: 'Zxxxx'.
Tax year of the report.
Month of the report.
Query parameters
Page of records in the report to return. Defaults to 0.
Headers
Bearer token for authentication.
Response
Reconciliation results for the specified page of the monthly report.
Example response
{
"currentPage": 1,
"recordsInPage": 8000,
"totalRecords": 10000,
"totalNumberOfPages": 2,
"returnResults": [
{
"accountNumber": "12345678",
"nino": "AB123456C",
"issueIdentified": {
"code": "OVER_SUBSCRIBED",
"overSubscribedAmount": 1000
}
}
]
}