/api/v1/inbound-shipments/:id/attachments read:inventory The live attachments on one of your packages, oldest first, exactly as inbound_shipment.attachments[] carries them — this is for refreshing download links without re-reading the shipment. A file's url is signed and lasts an hour (url_expires_at says until when); a link's url is the one you gave us and has no expiry. Removed attachments are not listed.
GET /api/v1/inbound-shipments/0/attachments These inputs are shared across all docs pages, so an id entered here carries over.
Not run yet. Press Run to make a live call against https://service.rip.fun (through this demo's server-side proxy; the API key never reaches the browser).
curl -X GET 'https://service.rip.fun/api/v1/inbound-shipments/0/attachments' \ -H 'X-API-Key: rip_…'
data)| Field | Description |
|---|---|
attachments[] | id, kind, type, filename, content_type, size_bytes, url, url_expires_at, description, created_at |
| Status | Code | When |
|---|---|---|
| 400 | invalid id | id is not a positive integer |
| 404 | not found | inbound shipment not part of your account |
See Errors for the response envelope and the full code list.