GetUsers
This method can be used for the following functionality: Get details for all users.
Last updated
GET /api/ss/users?userId=5d5b27734a83a708c46f4748 HTTP/1.1GET /api/ss/users?firstName=John HTTP/1.1GET /api/ss/users?lastName=Citizen HTTP/1.1GET /api/ss/users?email=john.citizen@attackforge.com HTTP/1.1GET /api/ss/users?username=john.citizen@attackforge.com HTTP/1.1curl -X GET 'https://demo.attackforge.com/api/ss/users?firstName=Bob' -H 'Host: demo.attackforge.com' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close'{
"count": 999,
"users":[
{
"status": "...",
"role": "...",
"first_name": "...",
"last_name": "...",
"email_address": "...",
"username": "...",
"mfa_enabled": "...",
"last_logged_in": "...",
"created": "...",
"id": "...",
"custom_fields": [
{
"key": "department",
"value": "IT Security"
}
]
}
]
}