List Personalities API

Retrieve a list of personalities from your account

API Endpoint

MethodEndpoint
GEThttps://new-prod.vocera.ai/test_framework/v1/personalities-external/

Authentication

Include your API key in the request headers:

HeaderDescription
X-VOCERA-API-KEYYour API key obtained from the dashboard

Response Format

The API returns a list of personality objects.

Personality Object

PropertyTypeDescription
idintegerUnique identifier for the personality
namestringName of the personality
descriptionstringDescription of the personality
languagestringISO 639-1 language code (e.g., “en”)

Example Response

[

    {

        "id": 1,

        "name": "Highly Interruptive American Man",

        "description": "Highly Interruptive American Man",

        "language": "en"

    }

    // Additional personalities...

]

Code Examples

curl -X GET https://new-prod.vocera.ai/test_framework/v1/personalities-external/ \

  -H "X-VOCERA-API-KEY: <your-api-key-here>"