Add Manager
POST/users/:id/managers
Add a manager (authorize another user to act on your behalf)
Request
Path Parameters
id stringrequired
The user ID (child user adding the manager)
- application/json
Body
required
manager_user_id stringrequired
The user ID of the user to add as manager
Responses
- 200
- 400
- 401
- 403
- 500
Manager added successfully
- application/json
- Schema
- Example (from schema)
Schema
success boolean
Whether the operation was successful
transaction_hash string
The blockchain transaction hash
{
"success": true,
"transaction_hash": "string"
}
Bad request
Unauthorized
Forbidden
Server error
Loading...