{ "opencollection": "1.0.0", "info": { "name": "Tavus Developer API Collection Conversations Personas API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Personas", "type": "folder" }, "items": [ { "info": { "name": "List Personas", "type": "http" }, "http": { "method": "GET", "url": "https://tavusapi.com/v2/personas", "params": [ { "name": "limit", "value": "", "type": "query", "description": "The number of personas to return per page. Default is 10." }, { "name": "page", "value": "", "type": "query", "description": "The page number to return. Default is 1." }, { "name": "persona_type", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "This endpoint returns a list of all Personas created by the account associated with the API Key in use.\n" }, { "info": { "name": "Create Persona", "type": "http" }, "http": { "method": "POST", "url": "https://tavusapi.com/v2/personas", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Creates a persona that configures how a replica behaves and sounds in CVI for every conversation that uses that persona." }, { "info": { "name": "Get Persona", "type": "http" }, "http": { "method": "GET", "url": "https://tavusapi.com/v2/personas/:persona_id", "params": [ { "name": "persona_id", "value": "", "type": "path", "description": "The unique identifier of the persona." } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "This endpoint returns a single persona by its unique identifier.\n" }, { "info": { "name": "Patch Persona", "type": "http" }, "http": { "method": "PATCH", "url": "https://tavusapi.com/v2/personas/:persona_id", "params": [ { "name": "persona_id", "value": "", "type": "path", "description": "The unique identifier of the persona." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "This endpoint allows you to update specific fields of a persona using JSON Patch operations." }, { "info": { "name": "Delete Persona", "type": "http" }, "http": { "method": "DELETE", "url": "https://tavusapi.com/v2/personas/:persona_id", "params": [ { "name": "persona_id", "value": "", "type": "path", "description": "The unique identifier of the persona." } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "This endpoint deletes a single persona by its unique identifier.\n" } ] } ], "bundled": true }