GET
/
api2
/
v1
/
users
List users
curl --request GET \
  --url https://cloud.memsource.com/web/api2/v1/users
{
  "totalElements": 123,
  "totalPages": 123,
  "pageSize": 123,
  "pageNumber": 123,
  "numberOfElements": 123,
  "content": [
    {
      "id": "<string>",
      "uid": "<string>",
      "userName": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "<string>",
      "dateCreated": "2023-11-07T05:31:56Z",
      "dateDeleted": "2023-11-07T05:31:56Z",
      "createdBy": {
        "firstName": "<string>",
        "lastName": "<string>",
        "userName": "<string>",
        "email": "<string>",
        "role": "SYS_ADMIN",
        "id": "<string>",
        "uid": "<string>"
      },
      "role": "SYS_ADMIN",
      "timezone": "<string>",
      "note": "<string>",
      "terminologist": true,
      "sourceLangs": [
        "<string>"
      ],
      "targetLangs": [
        "<string>"
      ],
      "active": true,
      "priceList": {
        "id": "<string>",
        "name": "<string>",
        "uid": "<string>"
      },
      "netRateScheme": {
        "id": "<string>",
        "uid": "<string>",
        "name": "<string>",
        "dateCreated": "2023-11-07T05:31:56Z",
        "createdBy": {
          "firstName": "<string>",
          "lastName": "<string>",
          "userName": "<string>",
          "email": "<string>",
          "role": "SYS_ADMIN",
          "id": "<string>",
          "uid": "<string>"
        }
      },
      "anonymized": true
    }
  ],
  "sort": {
    "orders": [
      {
        "direction": "ASC",
        "property": "<string>"
      }
    ]
  }
}

Query Parameters

firstName
string

Filter for first name, that starts with value

Maximum length: 255
lastName
string

Filter for last name, that starts with value

Maximum length: 255
name
string

Filter for last name or first name, that starts with value

Maximum length: 255
userName
string
Maximum length: 255
email
string
Maximum length: 255
nameOrEmail
string

Filter for last name, first name or email starting with the value

Maximum length: 255
role
enum<string>[]
includeDeleted
boolean
default:false
pageNumber
integer
default:0

Page number, starting with 0, default 0

Required range: x >= 0
pageSize
integer
default:50

Page size, accepts values between 1 and 50, default 50

Required range: 1 <= x <= 50
sort
enum<string>[]
order
enum<string>[]

Response

200
application/json

successful operation

The response is of type object.