SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Deposits

Get deposit status

GET/api/v1/pawapay/deposits/:depositId

Checks a deposit's current status directly with PawaPay.

Requires Authorization
ADMIN, ACCOUNTANT only
Session

Path parameters

depositIdstringrequired
Deposit ID.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/pawapay/deposits/:depositId \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "depositId": "SWG-DEP-9f8e7d6c5b4a3210",
    "status": "COMPLETED",
    "created": "2026-02-15T09:00:00.000Z"
  }
}