layout | title | permalink |
---|---|---|
page |
Architecture |
/architecture/ |
Presentation about microservices
PUT /api/loanApplication/{loanApplicationId}
{
"firstName" : "text",
"lastName" : "text",
"job" : "text",
"amount" : number,
"age" : number
}
PUT /api/loanApplication/{loanApplicationId}
{
"firstName" : "text",
"lastName" : "text",
"job" : "text",
"amount" : number,
"fraudStatus" : "text"
}
GET /api/loanApplication/{loanApplicationId}
{
"applicationId" : "text",
"result" : boolean
}
POST /api/client
{
"firstName" : "text",
"lastName" : "text",
"age": number,
"loanId" : "text" (This is actually the loan application identifier.)
}
POST /api/loanApplication
{
"amount": number,
"loanId" : "text" (This is actually the loan application identifier.)
}
POST /api/client
{
"firstName" : "text",
"lastName" : "text",
"age": number,
"loanId" : "text" (This is actually the loan application identifier.)
}
POST /api/reporting
{
"loanId" : "text",
"job" : "text",
"amount" : number,
"fraudStatus" : "text",
"decision" : "text"
}
PUT /api/marketing/{loanApplicationId}
{
"person" : {
"firstName" : "text",
"lastName" : "text"
},
"decision" : "text"
}
GET /api/marketing/{firstName}_{lastName}
{
"marketingOffer" : "text"
}