Inbound Emails
10 endpoints
List email attachments
List all attachments for an inbound email
Parameters
idrequiredResponses
200Attachment list
401Authentication required
404Email not found
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const inboundemails = await client.inbound-emails.get('id_here');89console.log(result);