Parameters
- token: string
- id: string
Optionalcursor: string
Returns Promise<
{
fetchMore: | (
() => Promise<{ messages: { id: string; created_time: string; }[] | undefined; participants: { id: string; username: string; }[] | undefined; fetchMore: (() => Promise<...>) | undefined; }>
)
| undefined;
messages: { created_time: string; id: string }[]
| undefined;
participants: { id: string; username: string }[] | undefined;
},
>
Promise of { messages, participants, fetchMore? }.
Fetches a single Instagram conversation by id with messages and participants. Supports pagination for messages via
fetchMore.