Re: Python API: Delete a user from a review group

2015-09-03 Thread Steve
Sorry I'm back. Since I can't remove a user from a group using the API, I thought instead I would make the user account inactive via the API. But I can't find a resource for that. Is the 'active' flag for a user account exposed somewhere in the API? I'm just trying to programmatically

Python API: Delete a user from a review group

2015-09-02 Thread Steve
I'm trying to remove users from review groups using the Python API. The docs indicate that the review group user resource has a delete method, but I can't figure out how to get it to work. I can add a user to a group easily this way: g.get_users().create(username='steve') Unfortunately,

Re: Python API: Delete a user from a review group

2015-09-02 Thread Steve
Thanks Steven for confirming that. I thought maybe I was going crazy! --Steve On Wednesday, September 2, 2015 at 2:24:50 PM UTC-7, Steven MacLeod wrote: > > It looks like it's not actually possible to delete a user from a review > group using the Python API at the moment. Review Board seems

Re: Python API: Delete a user from a review group

2015-09-02 Thread Steven MacLeod
It looks like it's not actually possible to delete a user from a review group using the Python API at the moment. Review Board seems to be returning an incorrect url which points to the user resource itself, rather than the review-group-user resource for the delete link. you can see that by