Skip to main content
PATCH
/
personalities
/
{id}
Update personality
curl --request PATCH \
  --url https://app.relyable.ai/api/personalities/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "gender": "MALE",
  "provider": "ELEVENLABS",
  "name": "<string>",
  "description": "<string>",
  "prompt": "<string>",
  "temperature": 123,
  "accent": "<string>",
  "backgroundNoise": true,
  "voice_id": "<string>"
}
'
{
  "message": "<string>",
  "data": {
    "gender": "MALE",
    "provider": "ELEVENLABS",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "name": "<string>",
    "description": "<string>",
    "prompt": "<string>",
    "temperature": 123,
    "accent": "<string>",
    "backgroundNoise": true,
    "createdByUserId": "<string>",
    "workspaceId": "<string>",
    "voice_id": "<string>",
    "created_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Minimum string length: 1

Body

application/json
gender
enum<string>
Available options:
MALE,
FEMALE
provider
enum<string> | null
Available options:
ELEVENLABS,
OPENAI,
DEEPGRAM,
GOOGLE_LIVE,
name
string
description
string
prompt
string
temperature
number
accent
string
backgroundNoise
boolean
voice_id
string | null

Response

Successful response

message
string
required
data
object
required
{key}
any