Create credit card offer
Use case
We are creating a credit card offer for a particular person with sample data.
The path parameter is the person ID for which you want to create the offer.
".../ID-3382/cards/offers"
Type of the credit offer
"offerTypeCode": "NEW_CREDIT",
"creditTypeCode": "REVOLVING_MONTHLY",
"priceListCode": "CREDIT_PL"
Credit type and price list for the credit offer
"creditTypeCode": "REVOLVING_MONTHLY",
"priceListCode": "CREDIT_PL"
Servicing account details
"servicingAccount": {
"servicingAccountRef": "12345",
"servicingAccountSource": "EXTERNAL" }
Requested amount
"requestedMoney": {
"amount": "1000",
"currencyCode": "EUR" }
Offered amount
"offeredMoney": {
"amount": "1000",
"currencyCode": "EUR" }
Maximum amount offered by a bank to customers
"maxMoney": {
"amount": "1000",
"currencyCode": "EUR" }
Interests proposed to customers
"interests": [
{ "interestTypeCode": "CASH_INT",
"rate": 11.00 },
{ "interestTypeCode": OVERLIMIT_INT",
"rate": 15.00 },
{ "interestTypeCode": "PUR_INT",
"rate": 13.00 }
]
Invoice days
"invoiceDay": 1,
"invoiceDueDay": 20
Country code
"countryCode": "EE"
Sample API call
To create the credit card offer, use the following endpoint:
https://card-api.sandbox.tuumplatform.com/api/v1/persons/ID-3382/cards/offers
Sample request
The sample request body is as follows:
{
"offerTypeCode": "NEW_CREDIT",
"creditTypeCode": "REVOLVING_MONTHLY",
"priceListCode": "CREDIT_PL",
"servicingAccount": {
"servicingAccountRef": "12345",
"servicingAccountSource": "EXTERNAL"
},
"requestedMoney": {
"amount": "1000",
"currencyCode": "EUR"
},
"offeredMoney": {
"amount": "1000",
"currencyCode": "EUR"
},
"maxMoney": {
"amount": "1000",
"currencyCode": "EUR"
},
"interests": [
{
"interestTypeCode": "CASH_INT",
"rate": 11.00
},
{
"interestTypeCode": "OVERLIMIT_INT",
"rate": 15.00
},
{
"interestTypeCode": "PUR_INT",
"rate": 13.00
}
],
"invoiceDay": 1,
"invoiceDueDay": 20,
"countryCode": "EE",
"tenantCode": "MB"
}
Sample response
Below you will find the response to the sample request:
Result
We have created the credit card offer with the status PRESENTED and an offer ID in the response. After this, you can accept. decline, or cancel the offer using the offer ID.
Last updated
Was this helpful?