Skip to main content
PUT
/
api
/
v1
/
owner
/
agent
Update Agent Config
curl --request PUT \
  --url https://api.example.com/api/v1/owner/agent \
  --header 'Content-Type: application/json' \
  --data '
{
  "custom_slug": "<string>",
  "display_name": "<string>",
  "agent_name": "<string>",
  "welcome_message": "<string>",
  "is_active": true,
  "creator_bio": "<string>",
  "agent_instructions": "<string>"
}
'

Update Agent Config

Update the agent link (profile) settings.

Authentication

Requires a valid user JWT token. Starter plan required.

Request Body

custom_slug
string
URL slug for the public page. Must be URL-safe.
display_name
string
Agent display name.
agent_name
string
AI system name.
welcome_message
string
Greeting message for visitors.
is_active
boolean
Whether the agent is live.
creator_bio
string
Owner’s bio text.
agent_instructions
string
Custom instructions for the agent’s behavior.

Example

curl -X PUT https://api.ama2.me/api/v1/owner/agent \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "display_name": "Updated Agent Name",
    "welcome_message": "Welcome! Ask me anything.",
    "is_active": true
  }'