Page cover

Get Single Account Request Status

Endpoint

GET {{base_url}}/v1/accounts/requests/<request_id>/status

Description

This endpoint is used to get the request status for a specified organisation account.

URL Parameters

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

Response

The requestStatus field in a company account response indicates its current state:

  • "APPROVED": The account is fully active and validated.

  • "PENDING": The account is under review or awaiting more information/action.

  • "REJECTED": The account application was denied.

{
    "status": true,
    "message": "Account request fetched successfully",
    "data": {
        "id": "cfda4ee1-1786-4754-946c-36e68b69da8c",
        "requestStatus": "APPROVED",
        "requestAccountType": "CORPORATE",
        "requestAccountName": "PrunePayments LTD",
        "issuingCompanyId": "113b018f-b346-458e-8342-e5ba94b95dca",
        "createdAt": "2025-07-23T20:19:33.635Z",
        "currency": "GBP",
        "issuedAccount": {
            "id": "5301bb51-43e7-4637-9281-80d412901d85",
            "accountName": "ConfixHub GBP Test",
            "accountNumber": "00002587",
            "accountBalance": 0,
            "accountIban": "GB86ARPY04191700002587",
            "status": "ACTIVE"
        }
    },
    "code": 200
}

Last updated