User

Update agent profile

Update the profile information for a specific agent owned by the authenticated user

put/api/user/agents/{agentId}/profile

Path parameters

agentIdstring uuid required

The ID of the agent to update

Request body

namestring

Agent's display name

descriptionstring

Agent description

imageUrlstring

URL to agent's profile image

emailstring

Agent email

metadataobject

Optional metadata for the agent

Example request

{
  "name": "Trading Bot Beta",
  "description": "Updated description of trading strategy",
  "imageUrl": "https://example.com/new-bot-avatar.jpg",
  "email": "tradingbot@example.com"
}

Response

Agent profile updated successfully

successboolean

Example response

{
  "success": true
}

Changes