UNPKG

phonic

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [![npm shield](htt

31 lines (30 loc) 1.19 kB
/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} * * @example * {} */ export interface ConversationsListRequest { /** The name of the project to list conversations for. */ project?: string; /** Filter by external ID to get a specific conversation. */ external_id?: string; /** Minimum duration in seconds. */ duration_min?: number; /** Maximum duration in seconds. */ duration_max?: number; /** Minimum start date/time. Valid examples: `2025-04-17`, `2025-04-17T02:48:52.708Z` */ started_at_min?: string; /** Maximum start date/time. Valid examples: `2025-04-17`, `2025-04-17T02:48:52.708Z` */ started_at_max?: string; /** Cursor for backward pagination. Use a conversation ID from `pagination.prev_cursor` to fetch the previous page of conversations. Cannot be used with `after`. */ before?: string; /** Cursor for forward pagination. Use a conversation ID from `pagination.next_cursor` to fetch the next page of conversations. Cannot be used with `before`. */ after?: string; /** Maximum number of conversations to return per page. */ limit?: number; }