Skip to main content

Get client credit limits

This endpoint is for fetching a credit limits of the client.

Request​

URL​

/credit-status-global/<credit_status_global_id>

Method​

GET

Headers​

Content-Type: application/json
Authorization: Bearer eyy...

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"
},
}