This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities. |
194 documents found.
| REST End-point | GET /api/users.ashx/users |
| Client API Method | UsersService.GetUsers |
| Request Body |
Returns an array of UserEN objects.
| REST End-point | GET /api/users.ashx/users/{userId} |
| Client API Method | UsersService.GetUser |
| Request Body |
Returns UserEN based upon provided Users Id.
| REST End-point | GET /api/users.ashx/users/username/{username} |
| Client API Method | UsersService.GetUserByName |
| Request Body |
Returns UserEN based upon provided Username.
| REST End-point | POST /api/users.ashx/users/{userId} |
| Client API Method | UsersService.CreateUser |
| Request Body | UserEN |
Creates new User based upon provided UserEN object.
Returns a UserEN object that will contain new Userd Id.
| REST End-point | PUT /api/users.ashx/users/{userId} |
| Client API Method | UsersService.UpdateUser |
| Request Body | UserEN |
Updates an existing UserEN object.
Returns the updated UserEN object.
| REST End-point | PUT /api/users.ashx/users/{userId}/profile |
| Client API Method | UsersService.UpdateUserProfile |
| Request Body | UserEN |
Updates an existing UserEN object -- just the profile fields.
Returns the updated UserEN object.
| REST End-point | DELETE /api/users.ashx/users/{userId} |
| Client API Method | UsersService.DeleteUser |
| Request Body |
Deletes an existing UserEN object.
| REST End-point | GET /api/users.ashx/users/{userId}/settings |
| Client API Method | UsersService.GetUserSettings |
| Request Body |
Returns an array of UserSettingsEN objects that represent specified user's settings.
| REST End-point | PUT /api/users.ashx/users/{userId}/settings |
| Client API Method | UsersService.UpdateUserSettings |
| Request Body | UserSettingsEN |
Updates an existing UserSettingsEN object for the specified user.
Returns the updated UserSettingsEN object.
| REST End-point | GET /api/users.ashx/users/{userId}/filters |
| Client API Method | UsersService.GetUserSavedFilters |
| Request Body |
Returns an array of IssuesFilterEN objects that represent the specified users saved Issue Filters (across all Projects).
| REST End-point | GET /api/users.ashx/users/{userId}/projects/{projectId}/filters |
| Client API Method | UsersService.GetUserSavedFilters |
| Request Body |
Returns an array of IssuesFilterEN objects that represent the specified users saved Issue Filters for the specified Project.
| REST End-point | POST /api/users.ashx/users/{userId}/filters |
| Client API Method | UsersService.CreateIssueFilter |
| Request Body | IssuesFilterEN |
Creates new Issues Filter for the specified User based upon provided IssuesFilterEN object.
Returns a IssuesFilterEN object that will contain new Issue Filter Id.
| REST End-point | GET /api/users.ashx/users/{userId}/projects |
| Client API Method | UsersService.GetAccessibleProjects |
| Request Body |
Returns an array of ProjectEN objects that represent the Projects that the specified user can see.
NOTE: The UserEN object already contains the user's accessible projects. Hence this method should be avoided.