Download OpenAPI specification:Download
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. |
No Content
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "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. |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "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
| name | object (UpdateableProperty%3C%3E) Wrapper around properties used in patch requests |
| participantUid | object (UpdateableProperty%3C%3E) Wrapper around properties used in patch requests |
| isActive | object (Api.Common.UpdateableProperty%3CSystem.Nullable%3CBoolean%3E%3E) Wrapper around properties used in patch requests |
| externalId | object (UpdateableProperty%3C%3E) Wrapper around properties used in patch requests |
| data | object (UpdateableProperty%3C%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"
}, - "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. |
OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
[- {
- "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 Nullable |
| data | string Nullable |
| dynamicSchemaId | integer <int32> Nullable |
OK
Bad Request
Unauthorized
Forbidden
Not Found
UnprocessableEntity
Internal Server Error
{- "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"
}