Returns a list of reports that can be downloaded.
A report type is a report that can be executed on a schedule and/or on demand. If you have requested Shippo a custom report, you will receive the report type UUID that represents that report type. With this report type UUID, you can call this endpoint to list all the available runs of your report.
Successful Response
Validation Error
curl -i -X GET \ 'https://api.goshippo.com/v2/reports/{report_type_uuid}/runs?status=QUEUED&mode=ON_DEMAND&page=bmV4dDs5MTsyMDI0LTA4LTA3VDE0OjQ1OjA4LjkyNzg1MSswMDowMA==&limit=10' \ -H 'Authorization: ShippoToken <API_TOKEN>'
{- "resources": [
- {
- "object_id": "079aa9eb-9c0c-484a-b4fb-6507b43cf722",
- "created_at": "2021-09-01T00:00:00.000000Z",
- "mode": "ON_DEMAND",
- "status": "SUCCEEDED"
}
], - "page_info": {
- "next": "bmV4dDs5MTsyMDI0LTA4LTA3VDE0OjQ1OjA4LjkyNzg1MSswMDowMA==",
- "prev": "cHJldjs5MjsyMDI0LTA5LTA1VDEzOjQwOjE1Ljk2NjY1NCswMDowMA=="
}
}