Headers
Your API key for authentication.
Path Parameters
The unique identifier of the persona whose versions to retrieve.
Response
Array of version objects ordered by version number (newest first).
Show version object
Show version object
Unique identifier for this version.
ID of the parent persona.
Version type:
production
, draft
, or archived
.Sequential version number.
Orchestration prompt for this version (null if none).
Personality and behavior prompt for this version.
Array of pathway routing conditions (null if none).
Array of knowledge base IDs connected to this version.
Call configuration settings (null if none).
Array of default tools enabled for this version.
Version ID this was promoted from (null if initial).
When this version was promoted to production (null if not promoted).
User who promoted this version (null if auto or not promoted).
When this version was created.
When this version was last updated.
Any errors that occurred (null if none).
Copy
Ask AI
{
"data": [
{
"id": "12345678-1234-1234-1234-123456789012",
"persona_id": "12345678-1234-1234-1234-123456789012",
"version_type": "draft",
"version_number": 2,
"orchestration_prompt": null,
"personality_prompt": "You are a helpful assistant",
"pathway_conditions": null,
"kb_ids": [],
"call_config": null,
"default_tools": [],
"promoted_from_version_id": "12345678-1234-1234-1234-123456789012",
"promoted_at": null,
"promoted_by": null,
"created_at": "2025-09-23T15:13:36.390Z",
"updated_at": "2025-09-23T15:13:36.390Z"
},
{
"id": "12345678-1234-1234-1234-123456789013",
"persona_id": "12345678-1234-1234-1234-123456789012",
"version_type": "production",
"version_number": 1,
"orchestration_prompt": null,
"personality_prompt": "You are a helpful assistant",
"pathway_conditions": null,
"kb_ids": [],
"call_config": null,
"default_tools": [],
"promoted_from_version_id": null,
"promoted_at": "2025-09-23T15:13:36.368Z",
"promoted_by": null,
"created_at": "2025-09-23T15:13:36.369Z",
"updated_at": "2025-09-23T15:13:36.369Z"
}
],
"errors": null
}