v1
latestOpenAPI 3.0.12026-07-26106359429.8 KBCompliance
Update an application
Updates properties on an existing application.
Uses JSON Merge Patch semantics (RFC 7396): omitted fields are unchanged, explicit values overwrite, nested objects merge recursively.
Note: Entity relationships cannot be modified via this endpoint. Use POST /entity_relationships/batch to add and DELETE /entity_relationships/{entity_id} to remove.
Idempotency
The Idempotency-Key header is required.
patch/v0/applications/{id}
Path parameters
idstring required
Unique identifier for the application. Prefixed with application_.
Example:application_xyz123
Application ID
Headers
Idempotency-Keystring required
Unique key to ensure idempotent requests
Request body
Example request
{
"details": {
"product_name": "Growth Business Credit Line",
"credit": {
"underwriting_grade": "99",
"limit": 5000000,
"max_limit": 10000000
}
},
"documents": [
{
"document_id": "document_2N5Hk8xYmQpL9rBvC3jD",
"version": "v1"
}
]
}Response
Application updated 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"
}
]
}