Skip to main content

Resources

Lending Program

AttributeTypeDescription
idstringIdentifier of the Lending Program resource.
typestringType of the resource, the value is always lendingProgram.
namestringThe name of the Lending Program.
programTypestringThe type of the Lending Program. See Lending Program Types.
programSizeLimitnumberThe total credit limit for the Lending Program in cents.
createdAtstringThe date the resource was created. RFC3339 format.
Example Lending Program resource:
{
"data": {
"type": "bankSponsoredChargeCardProgram",
"id": "12",
"attributes": {
"createdAt": "2024-02-16T16:32:11.741Z",
"name": "Unit Finance Inc - MyBank BankSponsored Lending Program",
"programSizeLimit": 10900000
}
}
}

Lending Program Extended Information

AttributeTypeDescription
idstringIdentifier of the Lending Program resource.
typestringType of the resource, the value is always lendingProgramExtendedInformation.
namestringThe name of the Lending Program.
programTypestringThe type of the Lending Program.
programSizeLimitnumberThe total credit limit for the Lending Program in cents.
programSizeUtilizednumberThe amount of credit currently utilized from the Lending Program in cents.
programSizeAvailablenumberThe remaining available credit in the Lending Program in cents.
createdAtstringThe date the resource was created. RFC3339 format.
Example Lending Program Extended Information resource:
{
"data": {
"type": "lendingProgramExtendedInformation",
"id": "12",
"attributes": {
"programSizeAvailable": 10899600,
"programSizeAllocated": 400
}
}
}