Skip to main content
DELETE
/
bulk
/
repayments
Bulk delete repayments
curl --request DELETE \
  --url https://lms.tausi.africa/v1/bulk/repayments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    123
  ]
}
'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
ids
integer<int64>[]
required

Response

Repayments deleted successfully

success
boolean
required
Example:

true

message
string
required