proposals
Operations addressed under /proposals — 17 operations.
get-proposal-list
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as IEnumerable<ProposalDto>.
| Field | Declared type | Nullable |
|---|---|---|
ProposalNumber | string | no |
CustomerApplicationId | Guid? | yes |
CustomerId | Guid | no |
LoanProductId | Guid? | yes |
ProposalAmount | decimal | no |
CurrencyNumber | string | no |
ProposalDate | DateTime | no |
ValidityDate | DateTime? | yes |
DateDifference | int | no |
OrganizationId | Guid? | yes |
IsActive | bool | no |
Member names are the service's declaration names.
query Parameters
orderByorderSortpageIndexpageSizeget-proposal-list › Responses
Success. Returns a collection of records. Of 135 operations in this state that were probed (measured against a reference deployment on parameterless GET routes only), 118 answered and 118 returned a bare JSON array.
Array of catalog-declared response records.
currencyNumbercustomerApplicationIdcustomerIddateDifferencePermitted values — validated against the date_difference parameter. The service rejects any other value.
| Value | Token | Labels |
|---|---|---|
1 | Bir yılı 360, taksitler arasındaki farkı 30 gün kabul eder. | no label seeded |
2 | Bir yılı 365, taksitler arasındaki farkı 30 gün kabul eder. | no label seeded |
3 | Bir yılı 360 olarak, taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
4 | Bir yılı 365 olarak, taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
5 | O yıl içindeki gün sayısını ve taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
idloanProductIdorganizationIdproposalAmountproposalNumbervalidityDatecreate-proposal
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as CreateProposalDto.
| Field | Declared type | Nullable |
|---|---|---|
Id | Guid | no |
ProposalNumber | string | no |
ValidityDate | DateTime | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_1 | 400 | PRODUCT_NOT_FOUND | Product cannot be found. :{0}. |
ERR_LPRPSL_11 | 400 | CURRENCY_ID_NOT_FOUND | Currency cannot be found. |
create-proposal › Request Body
currencyNumbercustomerApplicationIdcustomerIddateDifferencePermitted values — validated against the date_difference parameter.
| Value | Meaning |
|---|---|
1 | Bir yılı 360, taksitler arasındaki farkı 30 gün kabul eder. |
2 | Bir yılı 365, taksitler arasındaki farkı 30 gün kabul eder. |
3 | Bir yılı 360 olarak, taksitler arasındaki gerçek farkı dikkate alır. |
4 | Bir yılı 365 olarak, taksitler arasındaki gerçek farkı dikkate alır. |
5 | O yıl içindeki gün sayısını ve taksitler arasındaki gerçek farkı dikkate alır. |
Permitted values — validated against the date_difference parameter. The service rejects any other value.
| Value | Token | Labels |
|---|---|---|
1 | Bir yılı 360, taksitler arasındaki farkı 30 gün kabul eder. | no label seeded |
2 | Bir yılı 365, taksitler arasındaki farkı 30 gün kabul eder. | no label seeded |
3 | Bir yılı 360 olarak, taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
4 | Bir yılı 365 olarak, taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
5 | O yıl içindeki gün sayısını ve taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
loanProductIdorganizationIdproposalAmountvalidityDaycreate-proposal › Responses
Success. The catalog declares this returns a single record. Of 25 operations in this state with a probeable route, 8 answered and 6 returned a single record — the other two returned a collection and a bare boolean.
idproposalNumbervalidityDateget-proposal-id-by-payback-plan-id
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as AuraCommandDto.
| Field | Declared type | Nullable |
|---|---|---|
Id | Guid | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_5 | 400 | PAYBACK_PLAN_NOT_FOUND | Payback plan cannot be found. Id:{0} |
path Parameters
paybackPlanIdget-proposal-id-by-payback-plan-id › Responses
Success. The catalog declares this returns a single record. Of 25 operations in this state with a probeable route, 8 answered and 6 returned a single record — the other two returned a collection and a bare boolean.
idget-proposal-details
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as IEnumerable<ProposalDetailsDto>.
| Field | Declared type | Nullable |
|---|---|---|
Expenses | List<ProposalExpenseDto> (collection) | no |
PaybackPlans | List<ProposalPaybackPlanRelationDto> (collection) | no |
ProductDetails | List<ProposalProductDetailDto> (collection) | no |
Member names are the service's declaration names.
query Parameters
orderByorderSortpageIndexpageSizeget-proposal-details › Responses
Success. An exact, uniquely bound route registration classifies this response as a collection.
get-proposal-by-id
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as ProposalDto.
| Field | Declared type | Nullable |
|---|---|---|
ProposalNumber | string | no |
CustomerApplicationId | Guid? | yes |
CustomerId | Guid | no |
LoanProductId | Guid? | yes |
ProposalAmount | decimal | no |
CurrencyNumber | string | no |
ProposalDate | DateTime | no |
ValidityDate | DateTime? | yes |
DateDifference | int | no |
OrganizationId | Guid? | yes |
IsActive | bool | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idget-proposal-by-id › Responses
Success. An exact, uniquely bound route registration classifies this response as a single-record.
Update Proposal
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Invokes the update-proposal service definition through PUT /proposals/{id}.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idUpdate Proposal › Request Body
isActivevalidityDateUpdate Proposal › Responses
Success. The catalog declares no response fields for this operation. The body is UNKNOWN CONTENT. The response type this route registers was read from the service's own source and is published on this operation as x-aura-code-response.
get-proposal-payback-plan-id-by-payback-plan-id
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as AuraCommandDto.
| Field | Declared type | Nullable |
|---|---|---|
Id | Guid | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
ERR_LPRPSL_5 | 400 | PAYBACK_PLAN_NOT_FOUND | Payback plan cannot be found. Id:{0} |
path Parameters
idpaybackPlanIdget-proposal-payback-plan-id-by-payback-plan-id › Responses
Success. An exact, uniquely bound route registration classifies this response as a single-record.
get-proposal-details-by-id
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as ProposalDetailsDto.
| Field | Declared type | Nullable |
|---|---|---|
Expenses | List<ProposalExpenseDto> (collection) | no |
PaybackPlans | List<ProposalPaybackPlanRelationDto> (collection) | no |
ProductDetails | List<ProposalProductDetailDto> (collection) | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idget-proposal-details-by-id › Responses
Success. The catalog declares this returns a single record. Of 25 operations in this state with a probeable route, 8 answered and 6 returned a single record — the other two returned a collection and a bare boolean.
currencyNumbercustomerApplicationIdcustomerIddateDifferencePermitted values — validated against the date_difference parameter. The service rejects any other value.
| Value | Token | Labels |
|---|---|---|
1 | Bir yılı 360, taksitler arasındaki farkı 30 gün kabul eder. | no label seeded |
2 | Bir yılı 365, taksitler arasındaki farkı 30 gün kabul eder. | no label seeded |
3 | Bir yılı 360 olarak, taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
4 | Bir yılı 365 olarak, taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
5 | O yıl içindeki gün sayısını ve taksitler arasındaki gerçek farkı dikkate alır. | no label seeded |
idisActiveloanProductIdorganizationIdproposalAmountproposalDateproposalNumbervalidityDateget-expense-list
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as IEnumerable<ExpenseDto>.
| Field | Declared type | Nullable |
|---|---|---|
ExpenseId | Guid | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idquery Parameters
orderByorderSortpageIndexpageSizeget-expense-list › Responses
Success. Returns a collection of records. Of 135 operations in this state that were probed (measured against a reference deployment on parameterless GET routes only), 118 answered and 118 returned a bare JSON array.
Array of catalog-declared response records.
idcreate-proposal-expense
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idcreate-proposal-expense › Responses
Success. The catalog declares no response fields for this operation. The body is UNKNOWN CONTENT. The response type this route registers was read from the service's own source and is published on this operation as x-aura-code-response.
get-payback-plan-relation-list
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as IEnumerable<PaybackPlanRelationDto>.
| Field | Declared type | Nullable |
|---|---|---|
PaybackPlanId | Guid | no |
IsSelected | bool | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idget-payback-plan-relation-list › Responses
Success. An exact, uniquely bound route registration classifies this response as a collection.
create-payback-plan-relation
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as AuraCommandDto.
| Field | Declared type | Nullable |
|---|---|---|
Id | Guid | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
ERR_LPRPSL_5 | 400 | PAYBACK_PLAN_NOT_FOUND | Payback plan cannot be found. Id:{0} |
path Parameters
idcreate-payback-plan-relation › Responses
Success. An exact, uniquely bound route registration classifies this response as a single-record.
update-payback-plan-relation
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
ERR_LPRPSL_5 | 400 | PAYBACK_PLAN_NOT_FOUND | Payback plan cannot be found. Id:{0} |
path Parameters
idproposalPaybackPlanIdupdate-payback-plan-relation › Responses
Success. The catalog declares no response fields for this operation. The body is UNKNOWN CONTENT. The response type this route registers was read from the service's own source and is published on this operation as x-aura-code-response.
get-proposal-product-detail-list
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as IEnumerable<ProposalProductDetailDto>.
| Field | Declared type | Nullable |
|---|---|---|
FieldValue | string | no |
LoanProductFieldId | Guid? | yes |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idget-proposal-product-detail-list › Responses
Success. Returns a collection of records. Of 135 operations in this state that were probed (measured against a reference deployment on parameterless GET routes only), 118 answered and 118 returned a bare JSON array.
Array of catalog-declared response records.
fieldValueidloanProductFieldIdcreate-proposal-product-detail
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idcreate-proposal-product-detail › Responses
Success. The catalog declares no response fields for this operation. The body is UNKNOWN CONTENT. The response type this route registers was read from the service's own source and is published on this operation as x-aura-code-response.
update-proposal-product-detail
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_20 | 400 | PRODUCT_DETAIL_NOT_FOUND | Product detail is not found. Id:{0} |
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idproposalProductDetailIdupdate-proposal-product-detail › Responses
Success. The catalog declares no response fields for this operation. The body is UNKNOWN CONTENT. The response type this route registers was read from the service's own source and is published on this operation as x-aura-code-response.
delete-proposal-product-detail
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_LPRPSL_20 | 400 | PRODUCT_DETAIL_NOT_FOUND | Product detail is not found. Id:{0} |
ERR_LPRPSL_4 | 400 | PROPOSAL_NOT_FOUND | Proposal cannot be found. : {0} |
path Parameters
idproposalProductDetailIddelete-proposal-product-detail › Responses
Success. The catalog declares no response fields for this operation. The body is UNKNOWN CONTENT. The response type this route registers was read from the service's own source and is published on this operation as x-aura-code-response.