Remove Manager
DELETE/users/:id/managers/:managerUserId
Remove a manager (revoke user-to-user grant). Can be called by the child user or the manager.
Request
Path Parameters
id stringrequired
The user ID (child user whose manager is being removed)
managerUserId stringrequired
The user ID of the manager to remove
Responses
- 200
- 400
- 401
- 403
- 500
Manager removed 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...