GET users list
Lists all the users that can be invited as participants to prioritizations.
Resource URL:
https://api.priotice.se/rest/{auth}/user/list
Data returned
If the request has been successful it will return all the users (UserID, GroupID, Name, Email). If the organization has no user defined yet it will return an error code (115) - no data.
Example request
GET https://api.priotice.se/rest/d41d8cd98f00b204e9800998ecf8427e/user/list
Example response:
{ "Status": "success", "Data": { "183": { "UserID": "183", "GroupID": "62", "Name": "Kristina Olofsson", "Email": "kristina@company.com" }, "184": { "UserID": "184", "GroupID": "62", "Name": "Mikael Johansson", "Email": "mikael@company.com" }, "185": { "UserID": "185", "GroupID": "63", "Name": "Lars Andersson", "Email": "lars@company.com" }, "186": { "UserID": "186", "GroupID": "63", "Name": "Lena Lindström", "Email": "lena@company.com" }, "187": { "UserID": "187", "GroupID": "64", "Name": "Erik Olsson", "Email": "erik@company.com" }, "188": { "UserID": "188", "GroupID": "64", "Name": "Birgitta Lind", "Email": "birgitta@company.com" } } }