v1
latestOpenAPI 3.0.12026-07-26106359429.8 KBCompliance
Retrieve an application
Retrieves a specific application by its ID. Accepts either a server-generated ID (application_*) or client-provided application ID. The server detects the ID type by prefix.
get/v0/applications/{id}
Path parameters
idstring required
Unique identifier for the application. Prefixed with application_.
Example:application_xyz123
Server-generated ID (application_*) application ID
Response
Application object retrieved successfully.
Example response
{
"id": "application_xyz123",
"entities": {
"account_holder_type": "commercial",
"account_holders": [
"entity_xyz123"
],
"authorized_signers": [
"entity_xyz123"
]
},
"details": {
"product_name": "Growth Business Credit Line",
"credit": {
"underwriting_grade": "99",
"limit": 5000000,
"max_limit": 10000000
}
},
"documents": [
{
"document_id": "document_2N5Hk8xYmQpL9rBvC3jD",
"version": "v1"
}
]
}