GET
/
api2
/
v3
/
projects
/
{projectUid}
/
jobs
/
{jobUid}
/
analyses
List analyses
curl --request GET \
  --url https://cloud.memsource.com/web/api2/v3/projects/{projectUid}/jobs/{jobUid}/analyses
{
  "totalElements": 123,
  "totalPages": 123,
  "pageSize": 123,
  "pageNumber": 123,
  "numberOfElements": 123,
  "content": [
    {
      "id": "<string>",
      "uid": "<string>",
      "innerId": "<string>",
      "type": "PreAnalyse",
      "name": "<string>",
      "provider": {
        "type": "<string>",
        "id": "<string>",
        "uid": "<string>"
      },
      "createdBy": {
        "firstName": "<string>",
        "lastName": "<string>",
        "userName": "<string>",
        "email": "<string>",
        "role": "SYS_ADMIN",
        "id": "<string>",
        "uid": "<string>"
      },
      "dateCreated": "2023-11-07T05:31:56Z",
      "netRateScheme": {
        "id": "<string>",
        "uid": "<string>",
        "name": "<string>",
        "isDefault": true,
        "dateCreated": "2023-11-07T05:31:56Z",
        "createdBy": {
          "firstName": "<string>",
          "lastName": "<string>",
          "userName": "<string>",
          "email": "<string>",
          "role": "SYS_ADMIN",
          "id": "<string>",
          "uid": "<string>"
        }
      },
      "analyseLanguageParts": [
        {
          "id": "<string>",
          "sourceLang": "<string>",
          "targetLang": "<string>",
          "jobs": [
            {
              "uid": "<string>",
              "filename": "<string>",
              "innerId": "<string>"
            }
          ]
        }
      ],
      "outdated": true,
      "importStatus": {
        "status": "RUNNING",
        "errorMessage": "<string>"
      },
      "pureWarnings": [
        "<string>"
      ]
    }
  ],
  "sort": {
    "orders": [
      {
        "direction": "ASC",
        "property": "<string>"
      }
    ]
  }
}

Path Parameters

projectUid
string
required
jobUid
string
required

Query Parameters

pageNumber
integer
default:0
Required range: x >= 0
pageSize
integer
default:50
Required range: 1 <= x <= 50

Response

200
application/json

successful operation

The response is of type object.