Get Single Account Request
Endpoint
GET {{}}/v1/accounts/requests/<request_id>
Description
This endpoint is used to get a single organisation account request.
URL Parameters
request-id (string): The request ID of the account you want to retrieve.
Response
On success, the API will return a JSON object containing the details of a single company account.
{
"status": true,
"message": "Account request fetched",
"data": {
"id": "7953907e-0d0d-40a4-a6f8-7a377fb12f75",
"status": "APPROVED",
"firstName": "Fari",
"lastName": "Usmani",
"accountType": "USER",
"documentData": {
"idType": "passport",
"poaType": "utilityBill",
"idFileURL": "https://xxxxxxxxxxxxxxxxxxxx/passport.png",
"poaFileURL": "https://xxxxxxxxxxxxxxxxxxxx/util.png",
},
"createdAt": "2024-08-16T10:16:58.697Z",
"companyId": "27dc0e6c-ef5b-41c5-ad55-2208fc543e1a"
},
"code": 200
}
Last updated