v1
latestOpenAPI 3.0.12026-07-243686491.1 MBRetrieve your wallet transactions
Required scope: wallet-transactions:read </br>Organization authorization: supported
Query parameters
page number to retrieve (starts with 0)
number of items per page (between 1 and 100, default 10)
Filter to retrieve transactions for a given operator.</br>*Note:*The operatorId must be in the consumer’s operatorIds or, if empty, belong to the organization’s sub-operators.</br>Note: When not provided the default operator will be used for the given consumer, if the default operator cannot be assigned the request will be rejected
Filter to retrieve transactions for a given team.</br>Note: When not provided the transactions for the operator will be returned instead
Filter to retrieve transactions where createdAt >= fromDate (ISO8601: yyyy-MM-ddTHH:mm:ssZ)
Filter to retrieve transactions where createdAt <= toDate (ISO8601: yyyy-MM-ddTHH:mm:ssZ)
Filter to retrieve transactions by the matching referenceId
Filter to retrieve transactions by the matching referenceType
Filter to retrieve transactions by the matching state
Filter to retrieve transactions by the matching group
**Note: This has been deprecated and won't do anything moving forward.**Filter transactions by partnerExternalId, to filter only resources without partnerExternalId use partnerExternalId=""
Response
List of wallet transactions that match the criteria
Example response
{
"data": [
{
"id": 1,
"fromAmount": 13.77,
"fromSubAmount": 11.02,
"fromVatAmount": 2.75,
"fromCurrency": {
"identifier": "dkk",
"name": "Danish krone",
"decimals": 2
},
"fromType": "team",
"from": {
"id": 14,
"name": "Monta",
"identifier": "monta",
"partnerId": 1,
"vatNumber": "FOO-123-ABC"
},
"fromWalletId": 1,
"toAmount": 13.77,
"toSubAmount": 11.02,
"toVatAmount": 2.75,
"toCurrency": {
"identifier": "dkk",
"name": "Danish krone",
"decimals": 2
},
"toType": "operator",
"to": {
"id": 14,
"name": "Monta",
"identifier": "monta",
"partnerId": 1,
"vatNumber": "FOO-123-ABC"
},
"toWalletId": 2,
"exchangeRate": 1,
"createdAt": "2022-04-22T09:47:05Z",
"updatedAt": "2022-04-22T09:47:05Z",
"completedAt": "2022-04-22T09:47:05Z",
"referenceId": "referenceId",
"group": "withdraw",
"kind": "charge-sponsored",
"vatPercentage": 25,
"state": "complete",
"note": "Test transaction.",
"partnerExternalId": "ACME-12345",
"metadata": {
"id": 1,
"kwh": 13.77
}
}
]
}