Skip to main content
GET
/
reports
/
sask
/
v1
/
errors
/
accounts
Retrieve accounts errors returned from tax authority
curl --request GET \
  --url https://api.rrc.dev.finventi.com/reports/sask/v1/errors/accounts \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "status": "SUCCESS",
      "data": {
        "refId": "305697289_20250303_E5D11991C7B74CB0",
        "accountType": "CURRENT_ACCOUNT",
        "iban": "LT601010012345678901",
        "currency": "EUR",
        "openedDate": "2024-12-20",
        "owner": {
          "type": "F",
          "name": "Jonas",
          "surname": "Jonaitis"
        },
        "representatives": [
          {
            "representative": {
              "type": "F",
              "name": "Petras",
              "surname": "Petraitis"
            },
            "refId": "a8306155-8731-4aea-9b36-d30e958fbe33"
          }
        ]
      },
      "errors": [
        {
          "code": "32",
          "fields": [
            "owner.name",
            "owner.surname"
          ],
          "message": "The name is missing. Please provide the full name."
        },
        {
          "code": "39",
          "fields": [
            "representatives[0].representative.name",
            "representatives[0].representative.surname"
          ],
          "message": "The name does not match the identification code. Please correct the name or the identification code."
        }
      ]
    }
  ],
  "page": {
    "size": 50,
    "number": 0,
    "totalElements": 1,
    "totalPages": 1
  }
}

Authorizations

Authorization
string
header
required

Obtain JWT via client_credentials grant. Required role: MMR_SASK_REPORT

Query Parameters

page
integer<int32>
default:0
pageSize
integer<int32>
default:50

Response

200 - application/json

OK

page
object
content
object[]
Last modified on June 4, 2026