Download OpenAPI specification:Download
Contains functionality around credit facilities.
For endpoints that support localization the language can be passed either as a query string parameter (using the name 'language') or in the 'accept-language' header.
If no language is passed to such endpoints then the default configured language will be used.
Gets a list of all the available products assigned to a facility and their details.
creditFacilityId required | integer <int32> CreditFacility Identifier |
Accept-Language | string The ISO 639-1 language to use for localizable data. |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
[- {
- "name": "string",
- "minAmount": 0,
- "maxAmount": 0,
- "productBaseId": 0,
- "minimumPeriod": 0,
- "maximumPeriod": 0,
- "daysPeriod": 0,
- "repaymentIds": [
- 0
], - "isActive": true,
- "id": 0,
- "billingPeriod": {
- "billingPeriodId": 0,
- "name": "string",
- "key": "string"
}, - "feeIds": [
- 0
]
}
]
Deletes an existing credit product.
id required | integer <int32> Credit Product Id |
Accept-Language | string The ISO 639-1 language to use for localizable data. |
No Content
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "code": "General",
- "subCode": "string",
- "message": "string",
- "correlationId": "string",
- "properties": {
- "property1": null,
- "property2": null
}
}
Gets a product and its details.
id required | integer <int32> |
Accept-Language | string The ISO 639-1 language to use for localizable data. |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "name": "string",
- "minAmount": 0,
- "maxAmount": 0,
- "productBaseId": 0,
- "minimumPeriod": 0,
- "maximumPeriod": 0,
- "daysPeriod": 0,
- "repaymentIds": [
- 0
], - "isActive": true,
- "id": 0,
- "creditFacilityId": 0,
- "defaultBillingPeriod": {
- "billingPeriodId": 0,
- "name": "string",
- "key": "string"
}, - "feeIds": [
- 0
]
}
Modifies an existing credit product. A range of years or a fixed number of years can be defined. The range is configured with minimum period and maximum period parameters. The fixed period is configured with years period.
id required | integer <int32> |
Accept-Language | string The ISO 639-1 language to use for localizable data. |
name | object (UpdateableProperty%3C%3E) Wrapper around properties used in patch requests |
creditFacilityId | object (Api.Common.UpdateableProperty%3CInt32%3E) Wrapper around properties used in patch requests |
minimumPeriod | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
maximumPeriod | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
daysPeriod | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
minAmount | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CDecimal%3E%3E) Wrapper around properties used in patch requests |
maxAmount | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CDecimal%3E%3E) Wrapper around properties used in patch requests |
defaultBillingPeriodId | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
repaymentIds | object (Api.Common.UpdateableProperty%3CSystem.Collections.Generic.ICollection%3CInt32%3E%3E) Wrapper around properties used in patch requests |
isActive | object (Api.Common.UpdateableProperty%3CBoolean%3E) Wrapper around properties used in patch requests |
productBaseId | object (Api.Common.UpdateableProperty%3CInt32%3E) Wrapper around properties used in patch requests |
No Content
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "name": {
- "doUpdate": true,
- "value": "string"
}, - "creditFacilityId": {
- "doUpdate": true,
- "value": 0
}, - "minimumPeriod": {
- "doUpdate": true,
- "value": 0
}, - "maximumPeriod": {
- "doUpdate": true,
- "value": 0
}, - "daysPeriod": {
- "doUpdate": true,
- "value": 0
}, - "minAmount": {
- "doUpdate": true,
- "value": 0
}, - "maxAmount": {
- "doUpdate": true,
- "value": 0
}, - "defaultBillingPeriodId": {
- "doUpdate": true,
- "value": 0
}, - "repaymentIds": {
- "doUpdate": true,
- "value": [
- 0
]
}, - "isActive": {
- "doUpdate": true,
- "value": true
}, - "productBaseId": {
- "doUpdate": true,
- "value": 0
}
}
{- "code": "General",
- "subCode": "string",
- "message": "string",
- "correlationId": "string",
- "properties": {
- "property1": null,
- "property2": null
}
}
Creates a new credit product. A range of years or a fixed number of years can be defined. The range is configured with minimum period and maximum period parameters. The fixed period is configured with years period.
Accept-Language | string The ISO 639-1 language to use for localizable data. |
Create credit product request
name required | string non-empty |
minAmount required | number <double> |
maxAmount required | number <double> |
productBaseId required | integer <int32> |
minimumPeriod | integer <int32> Nullable |
maximumPeriod | integer <int32> Nullable |
daysPeriod | integer <int32> Nullable |
repaymentIds | Array of integers <int32> Nullable |
isActive | boolean |
defaultBillingPeriodId required | integer <int32> |
creditFacilityId required | integer <int32> |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "name": "string",
- "minAmount": 0,
- "maxAmount": 0,
- "productBaseId": 0,
- "minimumPeriod": 0,
- "maximumPeriod": 0,
- "daysPeriod": 0,
- "repaymentIds": [
- 0
], - "isActive": true,
- "defaultBillingPeriodId": 0,
- "creditFacilityId": 0
}
{- "code": "General",
- "subCode": "string",
- "message": "string",
- "correlationId": "string",
- "properties": {
- "property1": null,
- "property2": null
}
}
Deletes an existing credit product base.
id required | integer <int32> Product Base Identifier |
Accept-Language | string The ISO 639-1 language to use for localizable data. |
No Content
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "code": "General",
- "subCode": "string",
- "message": "string",
- "correlationId": "string",
- "properties": {
- "property1": null,
- "property2": null
}
}
Gets one credit products base.
id required | integer <int32> Product Base Identifier |
Accept-Language | string The ISO 639-1 language to use for localizable data. |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "id": 0,
- "name": "string",
- "creditFacilityTypeId": 0,
- "defaultInterestRate": 0,
- "minimumPeriod": 0,
- "maximumPeriod": 0,
- "daysPeriod": 0,
- "defaultAmortisationPeriod": 0,
- "creditFacilityIds": [
- 0
], - "dynamicSchemaId": 0
}
Modifies existing credit product base. A range of years or a fixed number of years can be defined. The range is configured with minimum period and maximum period parameters. The fixed period is configured with years period.
id required | integer <int32> |
Accept-Language | string The ISO 639-1 language to use for localizable data. |
Patch Product Base Request
name | object (UpdateableProperty%3C%3E) Wrapper around properties used in patch requests |
creditFacilityTypeId | object (Api.Common.UpdateableProperty%3CInt32%3E) Wrapper around properties used in patch requests |
defaultInterestRate | object (Api.Common.UpdateableProperty%3CDecimal%3E) Wrapper around properties used in patch requests |
minimumPeriod | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
maximumPeriod | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
daysPeriod | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
defaultAmortisationPeriod | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CDecimal%3E%3E) Wrapper around properties used in patch requests |
dynamicSchemaId | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CInt32%3E%3E) Wrapper around properties used in patch requests |
No Content
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "name": {
- "doUpdate": true,
- "value": "string"
}, - "creditFacilityTypeId": {
- "doUpdate": true,
- "value": 0
}, - "defaultInterestRate": {
- "doUpdate": true,
- "value": 0
}, - "minimumPeriod": {
- "doUpdate": true,
- "value": 0
}, - "maximumPeriod": {
- "doUpdate": true,
- "value": 0
}, - "daysPeriod": {
- "doUpdate": true,
- "value": 0
}, - "defaultAmortisationPeriod": {
- "doUpdate": true,
- "value": 0
}, - "dynamicSchemaId": {
- "doUpdate": true,
- "value": 0
}
}
{- "code": "General",
- "subCode": "string",
- "message": "string",
- "correlationId": "string",
- "properties": {
- "property1": null,
- "property2": null
}
}
Gets all the credit products base.
Accept-Language | string The ISO 639-1 language to use for localizable data. |
OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
[- {
- "id": 0,
- "name": "string",
- "creditFacilityTypeId": 0,
- "defaultInterestRate": 0,
- "minimumPeriod": 0,
- "maximumPeriod": 0,
- "daysPeriod": 0,
- "defaultAmortisationPeriod": 0,
- "creditFacilityIds": [
- 0
], - "dynamicSchemaId": 0
}
]
Creates a new credit product base. A range of years or a fixed number of years can be defined. The range is configured with minimum period and maximum period parameters. The fixed period is configured with years period.
Accept-Language | string The ISO 639-1 language to use for localizable data. |
Create Product Base Request
name required | string non-empty |
creditFacilityTypeId required | integer <int32> |
defaultInterestRate | number <double> |
minimumPeriod | integer <int32> Nullable |
maximumPeriod | integer <int32> Nullable |
daysPeriod | integer <int32> Nullable |
defaultAmortisationPeriod | number <double> Nullable |
dynamicSchemaId | integer <int32> Nullable |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "name": "string",
- "creditFacilityTypeId": 0,
- "defaultInterestRate": 0,
- "minimumPeriod": 0,
- "maximumPeriod": 0,
- "daysPeriod": 0,
- "defaultAmortisationPeriod": 0,
- "dynamicSchemaId": 0
}
{- "code": "General",
- "subCode": "string",
- "message": "string",
- "correlationId": "string",
- "properties": {
- "property1": null,
- "property2": null
}
}