The "Get User Invoices" API endpoint allows users to retrieve a list of their invoices. By making a GET request to this endpoint, users can access their individual invoice information, including details such as invoice number, date, amount, and paid status.
GET
/invoices
curl \
--request GET 'https://my.interserver.net/apiv2/invoices' \
--header "X-API-KEY: $API_KEY"
Response examples (200)
[
{
"id": 42
}
]
Response examples (401)
{
"code": "string",
"message": "string"
}
Response examples (404)
{
"code": "string",
"message": "string"
}