In the assignee main table on the homepage, add a component for assigning a user to a lead. One approach would be to use the material ui Autocomplete component. The user data can be retrieved using the GET /users endpoint. Editing leads can be accomplished with the PUT /leads/{id} endpoint.
In the assignee main table on the homepage, add a component for assigning a user to a lead. One approach would be to use the material ui Autocomplete component. The user data can be retrieved using the
GET /users
endpoint. Editing leads can be accomplished with thePUT /leads/{id}
endpoint.