Partner Banking Docs
HomeStatus
  • Introduction
  • Getting Started
    • Partner Onboarding
    • Security
    • Authentication
    • Payload Signing
    • API Hosts
  • Concepts
    • API Connectivity Test
    • Accounts
      • Primary Accounts
      • Virtual Accounts
      • Getting Accounts
      • Balances Explained
    • Payments
      • Payment Simulation
      • Inbound Payments
      • Internal Payments
      • Counterparty Validation
      • Outbound Payments
      • Payment Details
        • Payment Details with ID
        • Payment Details with External Reference
    • Transactions
      • Activity Feed
    • Webhooks
      • Webhook Guidelines
      • Supported Events
      • Testing Webhooks
  • Full Specification
  • Return Home
Powered by GitBook
On this page

Was this helpful?

  1. Concepts
  2. Transactions

Activity Feed

PreviousTransactionsNextWebhooks

Last updated 5 months ago

Was this helpful?

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
400
Input validation error
application/json
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-05-19T12:46:28.180Z"
    }
  ],
  "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
400
Input validation error
application/json
403
Forbidden
application/json
404
Transaction not found
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-05-19T12:46:28.180Z"
}
  • GETGet transactions
  • GETGet transaction