Skip to main content
GET
/
personas
/
{personaId}
Get persona
curl --request GET \
  --url https://app2.freyavoice.ai/api/v2/personas/{personaId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "message": "<string>",
    "result": {
      "persona": {
        "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.

Path Parameters

personaId
string<uuid>
required

Response

Persona details

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