This endpoint is used to update the manager address of an agent.
Request Parameters
The unique identifier for the agent (UUID format)
The new manager Ethereum address
Response
Status of the operation (e.g., “success”)
Success message indicating the agent manager was updated
The agent ID that was updated (UUID format)
The new manager Ethereum address
Behavior
- Updates the manager address for the specified agent in our internal database
Authentication
B2B JWT token OR Privy authentication token and headers
When using Privy authentication token, include the following header:
x-privy-id-token: Privy ID token
{
"agentId": "2fe35eeb-5aa6-4564-94c2-2ce44e65625d",
"managerAddress": "0x56d0573c786d3..."
}
{
"status": "success",
"message": "Agent 2fe35eeb-5aa6-4564-94c2-2ce44e65625d manager updated",
"agentId": "2fe35eeb-5aa6-4564-94c2-2ce44e65625d",
"managerAddress": "0x56d0573c786d3..."
}