GET
/
api2
/
v1
/
lqa
/
assessments
/
reports
/
recipients
Get recipients of email with LQA reports
curl --request GET \
  --url https://cloud.memsource.com/web/api2/v1/lqa/assessments/reports/recipients
{
  "totalElements": 123,
  "totalPages": 123,
  "pageSize": 123,
  "pageNumber": 123,
  "numberOfElements": 123,
  "content": [
    {
      "type": "USER",
      "userUid": "<string>",
      "username": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "organizationName": "<string>",
      "email": "<string>"
    }
  ],
  "sort": {
    "orders": [
      {
        "direction": "ASC",
        "property": "<string>"
      }
    ]
  }
}

Query Parameters

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
jobParts
string
required

Comma separated list of JobPart UIDs

Required string length: 1 - 2147483647
nameOrEmail
string
Maximum length: 255

Response

200
application/json

successful operation

The response is of type object.