Skip to main content
GET
/
personas
List personas
curl --request GET \
  --url https://app2.freyavoice.ai/api/v2/personas \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "message": "<string>",
    "result": {
      "personas": [
        {
          "id": "<string>",
          "workspaceId": "<string>",
          "name": "<string>",
          "prompt": "<string>",
          "successCriteria": "<string>",
          "tags": [
            "<string>"
          ],
          "agentIds": [
            "<string>"
          ],
          "createdAt": "<string>",
          "updatedAt": "<string>",
          "createdBy": "<string>",
          "updatedBy": "<string>"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

workspaceId
string
required
Minimum string length: 1
filters
string

Base64-encoded filter state

Response

Personas list

success
enum<boolean>
required
Available options:
true,
false
data
object
required