curl --request GET \
--url https://api.sanka.com/api/v1/public/invoices \
--header 'Authorization: Bearer <token>'[
{
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"id_inv": 123,
"contact_name": "<string>",
"company_name": "<string>",
"start_date": "2023-12-25",
"due_date": "2023-12-25",
"status": "<string>",
"currency": "<string>",
"total_price": 123,
"total_price_without_tax": 123
}
]curl --request GET \
--url https://api.sanka.com/api/v1/public/invoices \
--header 'Authorization: Bearer <token>'[
{
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"id_inv": 123,
"contact_name": "<string>",
"company_name": "<string>",
"start_date": "2023-12-25",
"due_date": "2023-12-25",
"status": "<string>",
"currency": "<string>",
"total_price": 123,
"total_price_without_tax": 123
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK