Skip to main content

updateLenderConfig

updateLenderConfig

Path Parameters
    lenderId int64 required
Request Body required
    config object[]
  • Array [
  • LenderID int64
    LenderConfigType int64
    ConfigName string
    Value string
  • ]
Responses

OK


Schema

    string

POST /kpayment/v1/finance/lenderConfig/:lenderId

Request

Base URL
/payment
lenderId — path required
Body required
{
"config": [
{
"LenderID": 0,
"LenderConfigType": 0,
"ConfigName": "string",
"Value": "string"
}
]
}
curl / cURL
curl -L -X POST '/payment/kpayment/v1/finance/lenderConfig/:lenderId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"config": [
{
"LenderID": 0,
"LenderConfigType": 0,
"ConfigName": "string",
"Value": "string"
}
]
}'