curl --request GET \
--url https://panel.sendcloud.sc/api/v2/user/invoices \
--header 'Authorization: Basic <encoded-value>'{
"invoices": [
{
"id": 1638405,
"ref": "EU-CENTRAL-1-0-22-NL0063503",
"type": "initial_payment",
"price_incl": 0.02,
"price_excl": 0.02,
"isPayed": true,
"date": "08-06-2022 11:39:36",
"items": "https://panel.sendcloud.sc/api/v2/user/invoices/1638405"
}
]
}Retrieve all invoices (with the associated invoice id) which have been issued to your account to date.
curl --request GET \
--url https://panel.sendcloud.sc/api/v2/user/invoices \
--header 'Authorization: Basic <encoded-value>'{
"invoices": [
{
"id": 1638405,
"ref": "EU-CENTRAL-1-0-22-NL0063503",
"type": "initial_payment",
"price_incl": 0.02,
"price_excl": 0.02,
"isPayed": true,
"date": "08-06-2022 11:39:36",
"items": "https://panel.sendcloud.sc/api/v2/user/invoices/1638405"
}
]
}