Get Users by ID

Get Users by ID

POST {{host}}/api/rest/v1/management/user

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

Params

nameParameter TypeData TypeValuesDescription
-Bodyint[][10114, 18317]ID of users to get

Examples

Successful Request

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

Successful Response

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
  ]
}
]