-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
From the OneLogin API Reference:
OneLogin API - Users
Return users sorted by firstname. Use + to sort in ascending order or - to sort in descending order:
https://api.us.onelogin.com/api/2/users?sort=+firstname
Attempted code
$queryParameters = [
"sort" => "+firstname"
];
$userList = $oneLoginApi->getUsers($queryParameters);
Returns:
Empty array (blank)
For now the workaround is to just leave sort blank but I assume I am either doing this wrong or it is something to do with character encoding but as it isn't documented I can't be sure
$queryParameters = [
"sort" => ""
];
$userList = $oneLoginApi->getUsers($queryParameters);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels