I am trying to retrieve SoftLayer user profiles by userStatusId.
I am using URL:
<curl -X GET -k -n "https://api.softlayer.com/rest/v3/SoftLayer_Account/getUsers.jsoni?objectMask=mask\[virtualGuestCount,hardwareCount,userStatus,username,id,email,createDate;accountId,passwordExpireDate,secondaryPasswordTimeoutDays,secondaryPasswordModifyDate,userStatusId\]&objectFilter=\{\"userStatusId\":\{\"operation\":1021\}\}">
The user profiles returned are only 1001 status id for Active.
How do I retrieve other status IDs like 1002 = Disabled
, 1003 = Inactive
, 1021 = cancel_pending
, 1022 = VPN Only
Thank you.