Skip to main content
POST
/
personas
Create Persona
curl --request POST \
  --url https://api.example.com/personas \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "specialist_type": "<string>",
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "display_name": "<string>",
  "description": "<string>",
  "config_overrides": {},
  "tags": [
    "<string>"
  ],
  "enabled": true
}
'
{
  "id": "<string>",
  "tenant_id": "<string>",
  "specialist_type": "<string>",
  "agent_id": "<string>",
  "display_name": "<string>",
  "description": "<string>",
  "config_overrides": {},
  "tags": [
    "<string>"
  ],
  "enabled": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "agent_name": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json
specialist_type
string
required

Stable slug the LLM uses (e.g. 'billing'). Lowercase, dashes/underscores ok.

agent_id
string<uuid>
required

UUID of the backing agent this persona points at.

display_name
string
required

Human-friendly UI label (e.g. 'Billing').

Required string length: 1 - 160
description
string | null
config_overrides
Config Overrides · object

Reserved for future per-persona overrides on top of the backing agent's config. Empty/null in Phase 1–3.

tags
string[] | null
enabled
boolean
default:true

Response

Successful Response

id
string
required
tenant_id
string
required
specialist_type
string
required
agent_id
string
required
display_name
string
required
description
string | null
required
config_overrides
Config Overrides · object
required
tags
string[] | null
required
enabled
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
agent_name
string | null