Application information
GET/applications/:id
This endpoint retrieve and returns basic information about the application of an investor.
Request
Path Parameters
id uuidrequired
Header Parameters
X-API-Key stringrequired
Responses
- 200
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
- example0
- example1
Schema
id uuidrequired
Application ID.
sharedAt date-timerequired
UTC Date and time (RFC3339) corresponding to the time when the investor identity was shared and the application was created.
type InvestorType (string)required
Type of investor.
Possible values: [BusinessAngel
, VentureCapital
]
investorId uuid
Investor ID.
status ApplicationStatus (string)required
Status of the application.
Possible values: [NotStarted
, WaitingForUserAction
, PendingVerification
, Approved
, Rejected
]
email string
Email of the investor owner.
{
"sharedAt": "2024-07-29T15:51:28.071Z",
"email": "string"
}
{
"id": "00000000-0000-0000-0000-000000000000",
"sharedAt": "2021-01-01T00:00:00Z",
"type": "VentureCapital",
"investorId": "00000000-0000-0000-0000-000000000000",
"status": "Rejected",
"email": "[email protected]"
}
{
"id": "00000000-0000-0000-0000-000000000000",
"sharedAt": "2021-01-01T00:00:00Z",
"type": "BusinessAngel",
"investorId": "00000000-0000-0000-0000-000000000000",
"status": "Approved",
"email": "[email protected]"
}
The server cannot find the requested resource.