phonic
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [ • 359 B
TypeScript
/**
* @example
* {
* agent_id: "agent_12cf6e88-c254-4d3e-a149-a7f1bdd22783",
* ttl_seconds: 30
* }
*/
export interface CreateConversationTokenRequest {
/** ID of the agent the conversation token is scoped to. */
agent_id: string;
/** Time-to-live for the conversation token in seconds. */
ttl_seconds?: number;
}