Get Settlements
//A code snippet of how to consume the API
var myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("Authorization", "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczovL2RlbW8ubW9uaWNyZWRpdC5jb20vYXBpL3YxL2NvcmUvYXV0aC9sb2dpbiIsImlhdCI6MTY2ODk2NzQ0MywiZXhwIjoxNjY4OTcxMDQzLCJuYmYiOjE2Njg5Njc0NDMsImp0aSI6ImF0UE9GVHE4cU4yN2lBWlciLCJzdWIiOiJVU0FETUlOIiwicHJ2IjoiMjNiZDVjODk0OWY2MDBhZGIzOWU3MDFjNDAwODcyZGI3YTU5NzZmNyJ9.shrbQUV29vXRF30qMeBN3zxlc5JXd03QyMeD6ekzudU");
var requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch("https://demo.backend.monicredit.com/api/v1/payment/settlement", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
GET
{{BaseURL}}/payment/settlement
Headers
Name
Type
Description
Authorization*
String
{{bearer_token}}
{
"status": true,
"message": "Settlement Record Generated",
"data": [
{
"id": "SET_000000000",
"merchant_id": "MT0000000",
"date_paid": null,
"amount": "00000000",
"status": "PENDING",
"settlement_type": "revenue",
"settlement_bank_id": "SB0000000",
"settlement_batch": "SBATCH_0000000",
"type": "REVENUE",
"batch_reference": null,
"settlement_bank": {
"id": "SB000000",
"name": "McClure-Lesch",
"account_no": "000000",
"account_name": "Wilmer Russel",
"bank_code": null,
"bank_name": "WEMA",
"settlement_email": "test@test.com"
}
}
]
}
Last updated