Accounts APITransactions

List of transactions.

GET
/transactions

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

limit?integer

Number of items to return per page (max 100).

Default25
Range1 <= value <= 100
page?integer

Page index for pagination.

Default1
Range1 <= value
status[]?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.

Formatuuid
order[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 in1

Response 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"
    }
  }
]