v2

latestOpenAPI 3.1.02026-07-267085761.0 MB
Admin Ensure Billing

Update Ensure Deposit Entry

patch/api/admin/provider-billing/ensure/deposits/{deposit_id}

Path parameters

deposit_idstring uuid required

Request body

deposit_datestring date nullable
notestring nullable
status'initiated' | 'deposited'

Example request

{
  "amount": 5200,
  "note": "Adjusted funding",
  "status": "deposited"
}

Response

Successful Response

successboolean

Indicates whether the request was processed successfully.

messagestring

A short, human-readable message describing the result of the request.

queryGeneratedTimenumber nullable

The Unix timestamp (in seconds) indicating when the response was generated.

Example response

{
  "success": true,
  "message": "Operation completed.",
  "data": {
    "amount": 5000,
    "created_at": "2026-03-06T11:00:00Z",
    "deposit_date": "2026-03-06",
    "id": "9c4a1a36-6c6e-4bdf-9a9f-8a6e5a2f9c10",
    "note": "March funding",
    "status": "initiated"
  },
  "queryGeneratedTime": 1718006400
}