Update client global credit limits
This endpoint is for updating the global credit limits of the client.
Request​
URL​
/credit-status-global/<credit-status-global-id>
Method​
PUT
Headers​
Content-Type: application/json
Authorization: Bearer eyy...
Body​
A JSON representation of updatable global credit limit fields.
Request Body: all available fields
{
"limit": {
"type": "Number",
"description": "The global credit limit of the debtor in system locale currency"
},
"limitValidToDate": {
"type": "Date",
"description": "The valid to date of the global credit limit"
},
"limitWithRecourse": {
"type": "Number",
"description": "The credit limit with recourse of the client in system locale currency"
},
"limitWithRecourseValidToDate": {
"type": "Date",
"description": "The valid to date of the credit limit with recourse"
},
"limitPledge": {
"type": "Number",
"description": "The pledge limit of the debtor in system locale currency"
}
}
Response​
Status code 200.
Response Body
{
"id": {
"type": "String",
"description": "The id of the client credit status object"
},
"clientId": {
"type": "String",
"description": "The id of the client"
},
"currency": {
"type": "String",
"description": "The currency set on client"
},
"limit": {
"type": "Number",
"description": "The limit global limit set on client"
},
"limitPledge": {
"type": "Number",
"description": "The limit pledge set on client"
},
"limitValidToDate": {
"type": "String",
"description": "The limit valid to date set on client"
},
"limitWithRecourse": {
"type": "Number",
"description": "The limit with recourse of set on client"
},
"limitWithRecourseValidToDate": {
"type": "String",
"description": "The limit with recourse valid to date set on client"
},
"totalBalance": {
"type": "Number",
"description": "The total balance set on client"
},
"totalDisposable": {
"type": "Number",
"description": "The total disposable set on client"
},
"totalDisposablePledge": {
"type": "Number",
"description": "The total disposable pledge set on client"
},
"totalNoRecoursePending": {
"type": "Number",
"description": "The total no recourse pending set on client"
},
"totalNoRecourseUsed": {
"type": "Number",
"description": "The total no recourse used set on client"
},
"totalPending": {
"type": "Number",
"description": "The total pending on client"
},
"totalRecoursed": {
"type": "Number",
"description": "The total recoursed on client"
},
"totalUsed": {
"type": "Number",
"description": "The total used on client"
},
"totalUsedPledge": {
"type": "Number",
"description": "The total used pledge on client"
},
"totalWithRecourseDisposable": {
"type": "Number",
"description": "The total with recourse disposable on client"
},
"totalWithRecoursePending": {
"type": "Number",
"description": "The total with recourse pending on client"
},
"totalWithRecourseUsed": {
"type": "Number",
"description": "The total with recourse used on client"
},
}