Transaction

Gets a list of transaction. Note that `pending` transactions should be deleted at each call, since they attributes (included the ID) may vary.

Please note that extra fields are optional and can differ between financial institutions. IMPORTANT NOTE - If the madeOn or the updatedAt filters are not explicitly set, this API will return only transactions made during the current month, i.e. an automatic filter on madeOn will be applied . Here is an example of the madeOn filter: madeOn[after]=2022-01-20. And this is an example of the updatedAt filter: updatedAt[strictly_after]=2022-01-30T02:03:24Z

SecurityBearer
Request
path Parameters
fiscalId
required
string
query Parameters
page
integer
Default: 1

The collection page number

itemsPerPage
integer [ 0 .. 100 ]
Default: 30

The number of items per page

account.uuid
string
account.uuid[]
Array of strings
status
string
status[]
Array of strings
category
string
category[]
Array of strings
madeOn[before]
string
madeOn[strictly_before]
string
madeOn[after]
string
madeOn[strictly_after]
string
updatedAt[before]
string
updatedAt[strictly_before]
string
updatedAt[after]
string
updatedAt[strictly_after]
string
Responses
200

Transaction collection

get/business-registry/{fiscalId}/transactions
Request samples
Response samples
[
  • {
    }
]

Retrieves a Transaction

Retrieves a Transaction - Please note that extra fields are optional and can differ between financial institutions.

SecurityBearer
Request
path Parameters
fiscalId
required
string
transactionId
required
string
Responses
200

Transaction resource

404

Resource not found

get/business-registry/{fiscalId}/transactions/{transactionId}
Request samples
Response samples
{
  • "transactionId": "string",
  • "status": "string",
  • "madeOn": "2019-08-24",
  • "amount": "string",
  • "currencyCode": "string",
  • "description": "string",
  • "additional": "string",
  • "category": "string",
  • "duplicated": true,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "account": {
    },
  • "extra": {
    }
}