Get postpaid invoices
Retrieve a paginated list of postpaid invoices.
Authorization
ApiKeyAuth x-apikey<token>
In: header
Response Body
application/json
curl -X GET "https://api.dewavps.com/v1/billing/postpaid/invoices"{
"message": "Your invoices",
"data": {
"page": {
"total": 0,
"count": 0,
"per_page": 0,
"current_page": 0,
"total_pages": 0
},
"data": [
{
"invoice_number": "string",
"description": "string",
"detail": {
"amount": 0,
"vat": 0,
"total": 0
},
"status": "Not Paid",
"method": "string",
"created_at": "string"
}
]
}
}