cURL
curl --request GET \ --url https://api.getredo.com/v2.2/stores/{storeId}/invoices \ --header 'Authorization: Bearer <token>'
{ "invoices": [ { "charge": { "amount": "<string>", "currency": "<string>" }, "createdAt": "2023-11-07T05:31:56Z", "status": "<string>", "updatedAt": "2023-11-07T05:31:56Z", "id": "<string>", "store": { "id": "<string>" } } ] }
Get a list of invoices.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Store ID
"64e5a8a1af49a89df37e4ee7"
Success
Show child attributes
The charge that the invoice is for.
The time the invoice was created.
The status of the invoice.
The time the invoice was last updated.
The ID of the charge.
The ID of the store.
Was this page helpful?