Download OpenAPI specification:
Contains functionality around lenders.
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.
Deletes an existing lender.
| id required | integer <int32> Lender id |
| Accept-Language | string The ISO 639-1 language to use for localizable data. |
{- "code": "BadRequest",
- "subCode": "NA",
- "message": "The request was not in the required format",
- "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}Gets lender with provided id.
| id required | integer <int32> |
| Accept-Language | string The ISO 639-1 language to use for localizable data. |
{- "id": 0,
- "name": "string",
- "participantUid": "string",
- "isActive": true,
- "externalId": "string",
- "data": "string",
- "dynamicSchemaId": 0,
- "creditFacilityIds": [
- 0
]
}Modifies an existing lender.
| id required | integer <int32> LenderId of the lender that will be modified |
| Accept-Language | string The ISO 639-1 language to use for localizable data. |
Patch lender request
object (UpdateableProperty<>) Wrapper around properties used in patch requests | |
object (UpdateableProperty<>) Wrapper around properties used in patch requests | |
object (Api.Common.UpdateableProperty<System.Nullable<Boolean>>) Wrapper around properties used in patch requests | |
object (UpdateableProperty<>) Wrapper around properties used in patch requests | |
object (UpdateableProperty<>) Wrapper around properties used in patch requests | |
object (Api.Common.UpdateableProperty<System.Nullable<Int32>>) Wrapper around properties used in patch requests |
{- "name": {
- "doUpdate": true,
- "value": "string"
}, - "participantUid": {
- "doUpdate": true,
- "value": "string"
}, - "isActive": {
- "doUpdate": true,
- "value": true
}, - "externalId": {
- "doUpdate": true,
- "value": "string"
}, - "data": {
- "doUpdate": true,
- "value": "string"
}, - "dynamicSchemaId": {
- "doUpdate": true,
- "value": 0
}
}{- "code": "BadRequest",
- "subCode": "NA",
- "message": "The request was not in the required format",
- "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}Gets lenders.
| Accept-Language | string The ISO 639-1 language to use for localizable data. |
[- {
- "id": 0,
- "name": "string",
- "participantUid": "string",
- "isActive": true,
- "externalId": "string",
- "data": "string",
- "dynamicSchemaId": 0,
- "creditFacilityIds": [
- 0
]
}
]Creates a new lender.
| Accept-Language | string The ISO 639-1 language to use for localizable data. |
Create lender request
| name required | string non-empty |
| participantUid required | string non-empty |
| isActive required | boolean |
| externalId | string or null |
| data | string or null |
| dynamicSchemaId | integer or null <int32> |
{- "name": "string",
- "participantUid": "string",
- "isActive": true,
- "externalId": "string",
- "data": "string",
- "dynamicSchemaId": 0
}{- "code": "BadRequest",
- "subCode": "NA",
- "message": "The request was not in the required format",
- "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}