Inbound Emails

10 endpoints

List email attachments

List all attachments for an inbound email

Parameters
idrequired
stringInbound email ID
Responses
200Attachment list
401Authentication required
404Email not found
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const inboundemails = await client.inbound-emails.get('id_here');
8
9console.log(result);