Appearance
GET legal_entity_applications
Retrieve all legal entity applications submitted by your account.
Endpoint
GET /api/v1/legal_entity_applicationsAuthentication
Requires a valid API key in the Authorization header:
Authorization: Bearer <your-api-key>Example Request
bash
curl -X GET https://portal.eprospera.com/api/v1/legal_entity_applications \
-H "Authorization: Bearer <your-api-key>"Response
Success Response (200 OK)
| Field | Type | Description |
|---|---|---|
data | array | Array of legal entity application objects |
Application Object Fields
| Field | Type | Description |
|---|---|---|
id | string | Application unique identifier |
statusId | string | Current status of the application |
applicationData | object | Complete application data |
applicationVersion | string | Version of the application format |
submittedAt | string | null | Submission timestamp (ISO 8601) |
createdAt | string | Creation timestamp (ISO 8601) |
approvedAt | string | null | Approval timestamp (ISO 8601) |
rejectedAt | string | null | Rejection timestamp (ISO 8601) |
legalEntityId | string | null | ID of created legal entity (if approved) |
Status Values
"Draft"- Application is being prepared"Pending Review"- Application is being reviewed"Approved"- Application has been approved"Rejected"- Application has been rejected
Example Response
json
{
"data": [
{
"id": "12345678-abcd-1234-abcd-123456789012",
"statusId": "Approved",
"applicationData": {
"residencyType": "e_resident_entity_zf7j7u",
"entityDetails": {
"name": "Example LLC",
"extension": "LLC",
"entityType": "llc"
}
},
"applicationVersion": "1.0.0",
"submittedAt": "2024-01-15T10:30:00.000Z",
"createdAt": "2024-01-15T09:15:00.000Z",
"approvedAt": "2024-01-16T14:20:00.000Z",
"rejectedAt": null,
"legalEntityId": "123e4567-e89b-12d3-a456-426614174000"
},
{
"id": "87654321-dcba-4321-dcba-210987654321",
"statusId": "Draft",
"applicationData": {
"residencyType": "resident_entity_8lv3no",
"entityDetails": {
"name": "Another Company",
"extension": "LLC",
"entityType": "llc"
}
},
"applicationVersion": "1.0.0",
"submittedAt": null,
"createdAt": "2024-01-20T11:45:00.000Z",
"approvedAt": null,
"rejectedAt": null,
"legalEntityId": null
}
]
}Error Responses
401 Unauthorized
Invalid or missing API key:
json
{
"error": "Invalid API key"
}500 Internal Server Error
Server error:
json
{
"error": "Internal server error"
}Application Data Structure
The applicationData field contains the complete application information including:
- Residency type: Whether the entity will be e-resident or full resident
- Entity details: Name, type, and formation information
- Principal office address: Business address information
- Representatives: Information about entity representatives
- Registered agent: Details about the registered agent
- Additional information: Analytics data and business intentions
Access Control
This endpoint only returns applications created by your user account. You cannot access applications created by other users.