list_attempts
List recorded delivery attempts in chronological order to diagnose failures. Use with get_delivery to determine if the issue is producer-side (bad payload) or receiver-side (5xx, timeout).
Instructions
List every recorded attempt for a delivery, oldest first. Useful for debugging why a delivery failed. Example: "why did del_xyz fail?" → pair this with get_delivery (include_payload=true). get_delivery shows what the producer sent; list_attempts shows what each receiver attempt returned. Together they tell you whether the failure was producer-side (bad payload) or receiver-side (5xx, timeout).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| delivery_id | Yes | the delivery's public id (del_xxx) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| attempts | Yes | every recorded attempt for this delivery, oldest first |