GET
/
deposits
/
{depositId}
curl --request GET \
  --url https://api.sandbox.pawapay.io/deposits/{depositId} \
  --header 'Authorization: Bearer <token>'
[
  {
    "depositId": "8917c345-4791-4285-a416-62f24b6982db",
    "status": "COMPLETED",
    "requestedAmount": "123.00",
    "depositedAmount": "123.00",
    "currency": "ZMW",
    "country": "ZMB",
    "payer": {
      "type": "MSISDN",
      "address": {
        "value": "260763456789"
      }
    },
    "correspondent": "MTN_MOMO_ZMB",
    "statementDescription": "To ACME company",
    "customerTimestamp": "2020-10-19T08:17:00Z",
    "created": "2020-10-19T08:17:01Z",
    "respondedByPayer": "2020-10-19T08:17:02Z",
    "correspondentIds": {
      "SOME_CORRESPONDENT_ID": "12356789"
    },
    "metadata": {
      "orderId": "ORD-123456789",
      "customerId": "customer@email.com"
    }
  }
]

Get deposit status using the depositId from your initial deposit request. A list containing at most one Deposit is returned.

This operation can be used to confirm the current status of a deposit.

Authorizations

Authorization
string
header
required

Path Parameters

depositId
string
required

The depositId of the deposit transaction.

Required string length: 36

Response

200
application/json
Request has been processed by pawaPay

The response is of type object[].