Activity Feed

Get transactions

get
Query parameters
accountIdsstring[]Required
fromDatestring | nullableRequired
toDatestring | nullableRequired
pagenumberRequiredDefault: 1
limitnumber · max: 100RequiredDefault: 10
Header parameters
authorizationstringOptional

Authorization header containing your API Token

x-alg-noncestringOptional

Nonce used to generate the payload signature

x-alg-signaturestringOptional

Payload signature

datestringOptional

Date of the request un UTC/GMT

Responses
200
List of transactions
application/json
Responseall of
objectOptional
and
get
GET /v1/partner/transactions?accountIds=text&fromDate=text&toDate=text&origins=TRANSFER&states=PENDING&page=1&limit=10 HTTP/1.1
Host: api-url
Accept: */*
{
  "items": [
    {
      "transactionId": "text",
      "uniqueToken": "123e4567-e89b-12d3-a456-426614174000",
      "origin": "TRANSFER",
      "state": "PENDING",
      "category": "GENERAL",
      "impactType": "NEUTRAL",
      "customerId": "123e4567-e89b-12d3-a456-426614174000",
      "amount": 129,
      "currencyCode": "AFN",
      "description": "text",
      "exchangeRate": "text",
      "exchangeCurrencyCode": "AFN",
      "sourceCounterparty": {
        "type": "PERSONAL",
        "details": {
          "firstName": "John",
          "lastName": "Doe"
        },
        "accountCurrency": "GBP",
        "accountReferenceType": "UK_ACCOUNT",
        "accountReference": {
          "type": "UK_ACCOUNT",
          "sortCode": "010102",
          "accountNumber": "12345678"
        }
      },
      "destinationCounterparty": {
        "type": "PERSONAL",
        "details": {
          "firstName": "John",
          "lastName": "Doe"
        },
        "accountCurrency": "GBP",
        "accountReferenceType": "UK_ACCOUNT",
        "accountReference": {
          "type": "UK_ACCOUNT",
          "sortCode": "010102",
          "accountNumber": "12345678"
        }
      },
      "transactionDate": "2025-06-27T04:36:31.511Z"
    }
  ],
  "meta": {
    "currentPage": 1,
    "itemCount": 10,
    "itemsPerPage": 10,
    "totalItems": 100,
    "totalPages": 10
  }
}

Get transaction

get
Path parameters
transactionIdstringRequired
Header parameters
authorizationstringOptional

Authorization header containing your API Token

x-alg-noncestringOptional

Nonce used to generate the payload signature

x-alg-signaturestringOptional

Payload signature

datestringOptional

Date of the request un UTC/GMT

Responses
200
Transaction detail
application/json
get
GET /v1/partner/transactions/{transactionId} HTTP/1.1
Host: api-url
Accept: */*
{
  "transactionId": "text",
  "uniqueToken": "123e4567-e89b-12d3-a456-426614174000",
  "origin": "TRANSFER",
  "state": "PENDING",
  "category": "GENERAL",
  "impactType": "NEUTRAL",
  "customerId": "123e4567-e89b-12d3-a456-426614174000",
  "amount": 129,
  "currencyCode": "AFN",
  "description": "text",
  "exchangeRate": "text",
  "exchangeCurrencyCode": "AFN",
  "sourceCounterparty": {
    "type": "PERSONAL",
    "details": {
      "firstName": "John",
      "lastName": "Doe"
    },
    "accountCurrency": "GBP",
    "accountReferenceType": "UK_ACCOUNT",
    "accountReference": {
      "type": "UK_ACCOUNT",
      "sortCode": "010102",
      "accountNumber": "12345678"
    }
  },
  "destinationCounterparty": {
    "type": "PERSONAL",
    "details": {
      "firstName": "John",
      "lastName": "Doe"
    },
    "accountCurrency": "GBP",
    "accountReferenceType": "UK_ACCOUNT",
    "accountReference": {
      "type": "UK_ACCOUNT",
      "sortCode": "010102",
      "accountNumber": "12345678"
    }
  },
  "transactionDate": "2025-06-27T04:36:31.511Z"
}

Last updated

Was this helpful?