DewaVPS

Get deposit detail

GET
/billing/deposit/{invoice_id}/details

Retrieve details of a specific deposit transaction.

Authorization

ApiKeyAuth
x-apikey<token>

In: header

Path Parameters

invoice_id*string

UUID of the invoice

Formatuuid

Response Body

application/json

curl -X GET "https://api.dewavps.com/v1/billing/deposit/497f6eca-6276-4993-bfeb-53cbbbba6f08/details"
{
  "message": "Invoice detail",
  "data": {
    "code": "string",
    "method": "BCA VA",
    "method_img": "http://example.com",
    "detail": {
      "amount": 0,
      "vat": 0,
      "payment_fee": 0
    },
    "va_number": "string",
    "qr_string": "string",
    "payment_url": "http://example.com",
    "status": "SUCCESS",
    "expired_at": "string",
    "expired_seconds": 0
  }
}