Skip to main content
GET
/
stores
/
{storeId}
/
invoices
List Invoices
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>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

storeId
string
required

Store ID

Example:

"64e5a8a1af49a89df37e4ee7"

Response

Success

invoices
object[]
required