Createlineofcreditapiv1
lineOfCredit objectrequired
Description for lineOfCredit in CreateLineOfCreditApiV1
idstringrequired
the ID of the line of credit to be created
clientKeystring
The ID of the client for whom the line of credit is to be created
groupKeystring
the ID of the group for whom the line of credit is to be created
startDatestring<date-time>required
the date on which the line of credit will become valid
expireDatestring<date-time>required
the date on which the line of credit will end
amountstringrequired
the amount of the line of credit
notesstring
some notes
Possible values: <= 255 characters
customInformation object[]
An array of any custom field values you may have set up for your Mambu instance
Array [
customFieldIDstring
The ID of the custom field definition.
valuestring
the custom field value
]
exposureLimitTypestringrequired
Limit comparing to the original (APPROVED_AMOUNT) loan/overdraft amounts or the current (OUTSTANDING_AMOUNT) amount
Possible values: [OUTSTANDING_AMOUNT, APPROVED_AMOUNT]
Createlineofcreditapiv1
{
"lineOfCredit": {
"id": "string",
"clientKey": "string",
"groupKey": "string",
"startDate": "2024-07-29T15:51:28.071Z",
"expireDate": "2024-07-29T15:51:28.071Z",
"amount": "string",
"notes": "string",
"customInformation": [
{
"customFieldID": "string",
"value": "string"
}
],
"exposureLimitType": "OUTSTANDING_AMOUNT"
}
}