GET
/
subscriptions
/
{subscriptionId}
/
invoices
/
summary
Get invoice summary for a subscription
curl --request GET \
  --url https://api.paygentic.io/v0/subscriptions/{subscriptionId}/invoices/summary \
  --header 'Authorization: Bearer <token>'
{
  "notInvoiced": 123,
  "totalInvoiced": 123,
  "pendingInvoicesAmount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

subscriptionId
string
required

Unique identifier for a subscription

Response

200
application/json

Invoice summary

The response is of type object.