Prune documentation
  • Overview
  • Authentication
    • Introduction
    • Generating an Authentication Token
    • Request Parameters
  • Get Started
  • Account Service
    • Overview
    • Request Individual Account
    • Request Corporate Account
    • List Account Requests
    • Get Single Account Request
    • Single Account Request Status
    • Update Account Request Details
    • List Issued Accounts
    • Get Single Issued Account
    • Validate Account IBAN
    • Get Account Balance
    • Send Money from Account
    • Get Transaction Status
    • Get Single Transaction
    • Fetch Acceptable IDs
  • Payout Service
    • Overview
    • Disburse Funds
    • Disbursement Request Status
  • Webhooks
    • Overview
    • Get Webhook URLs
    • Update Webhook URL
  • Sandbox
    • Overview
    • Simulate Account Deposit
    • Simulate Transaction Confirmation
    • Simulate Transaction Failure
    • Simulate Account Issuance Approval
    • Simulate Account Issuance Rejection
  • Service Dashboard
    • Introduction
    • API Keys
    • Debit Requests
Powered by GitBook
Page cover

Get Transaction Status

Endpoint

GET {{}}/v1/accounts/transactions/<transaction_id>/status

Description

This endpoint is used to get a single organisation's transaction status.

URL Parameters

transaction-id (string): The transaction ID of the transaction request you want to retrieve.

Response

On success, the API will return a JSON object containing the status of a single transaction.

{
    "status": true,
    "message": "Transaction status",
    "data": "PENDING",
    "code": 200
}

PreviousSend Money from AccountNextGet Single Transaction

Last updated 8 months ago