Get Application by ID
Overview
Get an application for an individual end-customer by application id. 1.
Endpoint URL
https://api-s.nolantechnologies.com/v0/banking/applications/:applicationId
Endpoint Data
| Parameter Name | Description |
|---|---|
applicationId |
Unit application ID |
Example Request
curl -i -X GET "https://api-s.nolantechnologies.com/v0/banking/applications/1234567" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Nolan-API-Key: YourNolanApiKey"
Example Response
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 303
ETag: W/"12f-9INriuFpNrJxvAkZQkpx5rhqDjU"
Date: Wed, 01 Sep 2023 20:02:46 GMT
Connection: keep-alive
Keep-Alive: timeout=5
{
"data": {
"id": "1444994",
"status": "Approved",
"firstName": "John",
"lastName": "Smith",
"email": "[email protected]",
"createdAt": "2023-08-28T19:24:33.205Z",
"documents": []
}
}
-
Read more about this endpoint in the Unit API docs ↩