Page cover

Get Single Issued Account

Endpoint

GET {{base_url}}/v1/accounts/<account_id>?currency=<currency_code>

Description

This endpoint is used to get a single organisation account that has been issued by Prune to the organisation.

URL Parameters

account_id (string): The ID of the account you want to retrieve.

Query Parameters

currency_code (string): The currency code of the account you want to retrieve, i.e. EUR or GBP. NB: This parameter is required when making use of this endpoint

Response

On success, the API will return a JSON object containing the details of a single company account.

{
    "status": true,
    "message": "Fetched account",
    "data": {
        "id": "c3b410ed-83f1-4bad-99b8-26e6d03c0a3f",
        "accountName": "adeyemitest69 ibraheeemtesting6",
        "accountNumber": "00002537",
        "sortCode": "040513",
        "createdAt": "2025-07-20T11:39:05.949Z",
        "accountBalance": 0,
        "companyId": "3b636ed5-8d99-4cee-93ee-d9497aa86d03",
        "status": "ACTIVE",
        "accountIban": "GB78ARPY04191700002537",
        "type": "USER",
        "isTrusted": false
    },
    "code": 200
}

Last updated