Accounts APITransactions
List of transactions.
Authorization
BearerAuth AuthorizationBearer <token>
In: header
Query Parameters
limit?integer
Number of items to return per page (max 100).
Default
25Range
1 <= value <= 100page?integer
Page index for pagination.
Default
1Range
1 <= valuestatus[]?array<>
Filter by transaction status (e.g. COMPLETED, REJECTED).
createdAt[gte]?string
Filter for transactions created on or after this date.
operation[]?array<>
Filter by operation direction (INCOMING or OUTGOING).
type[]?array<>
Filter by transaction type.
accountId?string
Filter by account.
Format
uuidorder[createdAt]?string
Sort order by createdAt field (desc by default).
Value in
"asc" | "desc"Header Parameters
X-Volt-Api-Version*integer
Version of the API used. Currently, version 1 is the only version.
Value in
1Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://accounts.sandbox.volt.io/transactions" \ -H "X-Volt-Api-Version: 1"[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"status": "CREATED",
"failure": {
"code": "string",
"message": "string"
},
"operation": "OUTGOING",
"type": "PAYOUT",
"subtype": "OPEN_LOOP",
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"amount": 1,
"currency": "EUR",
"paymentReference": "string",
"internalReference": "string",
"paymentRail": "string",
"beneficiary": {
"customerId": "87d8e330-2878-4742-a86f-dbbb3bf522ac",
"accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
"viban": {
"accountIdentifiers": {
"iban": "PL61109010140000071219812874"
},
"vibanId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
},
"name": "string",
"email": "user@example.com",
"country": "DE",
"accountIdentifiers": {
"iban": "PL61109010140000071219812874",
"swiftBic": "WBKPPLPP"
},
"address": {
"addressLine1": "string",
"addressLine2": "string",
"city": "string",
"postalCode": "string",
"country": "DE"
}
},
"sender": {
"name": "string",
"customerId": "87d8e330-2878-4742-a86f-dbbb3bf522ac",
"accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
"accountIdentifiers": {
"iban": "PL61109010140000071219812874",
"swiftBic": "WBKPPLPP"
}
},
"initiatedBy": {
"user": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string"
}
},
"decisions": [
{
"user": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string"
},
"type": "APPROVED",
"createdAt": "2019-08-24T14:15:22Z"
}
],
"verification": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"result": "MATCH",
"executedAt": "2019-08-24T14:15:22Z"
}
}
]{
"code": "BAD_REQUEST",
"message": "string"
}{
"code": "UNAUTHORISED",
"message": "string"
}{
"code": "ACCESS_DENIED",
"message": "string"
}{
"code": "METHOD_NOT_SUPPORTED",
"message": "string"
}{
"code": "MEDIA_TYPE_NOT_ACCEPTABLE",
"message": "string"
}{
"code": "UNSUPPORTED_MEDIA_TYPE",
"message": "string"
}{
"code": "VALIDATION_FAILURE",
"message": "string",
"errors": [
{
"type": "TOO_FEW",
"propertyPath": "string",
"message": "string"
}
]
}{
"code": "INTERNAL_SERVER_ERROR",
"message": "string"
}