Get Users by Id

Get Users Batch

This endpoint allows you to retrieve multiple users by their ID.

Params

nameParameter typeData TypeValuesDescription
userIdPathinteger10114ID of users to get

Sample Request

POST {{host}}/api/rest/v1/management/user HTTP/1.1
Content-Type: application/json
 
[
    12345, 132132,
]

Sample Responses

HTTP/1.1 200 OK
 
[{
  "createdDate": "2021-05-05T19:54:08.662Z",
  "createdBy": 0,
  "modifiedDate": "2021-05-05T19:54:08.662Z",
  "modifiedBy": 0,
  "id": 0,
  "isActive": true,
  "email": "string",
  "firstName": "string",
  "lastName": "string",
  "fullName": "string",
  "federationId": "string",
  "groups": [
    0
  ]
},
{
  "createdDate": "2021-05-05T19:54:08.662Z",
  "createdBy": 0,
  "modifiedDate": "2021-05-05T19:54:08.662Z",
  "modifiedBy": 0,
  "id": 0,
  "isActive": true,
  "email": "string",
  "firstName": "string",
  "lastName": "string",
  "fullName": "string",
  "federationId": "string",
  "groups": [
    0
  ]
}
]

Models

User