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
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
Example response
{
"success": true
}