Skip to main content
POST
/
api2
/
v1
/
qualityProfiles
/
qeWarnings
Get QE warnings for selected job parts
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/qualityProfiles/qeWarnings \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jobParts": [
    {
      "uid": "<string>"
    }
  ],
  "initialSegmentId": "<string>"
}
'
{
  "endReached": true,
  "segmentWarnings": [
    {
      "jobPartUid": "<string>",
      "segmentId": "<string>",
      "warnings": [
        {
          "message": "<string>",
          "qeId": "<string>",
          "type": "<string>"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.phrase.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.

Body

application/json
jobParts
object[]
required

Job parts to fetch warnings for. Must all belong to the same project and the same workflow step. 1–100 entries.

Required array length: 1 - 100 elements
initialSegmentId
string

Segment id to resume pagination from. Omit (or send null) on the first request to start from the first segment; for subsequent pages, pass the last segmentId returned in the previous response's segmentWarnings.

Response

successful operation

endReached
boolean

True when there are no further segments to fetch beyond this response.

segmentWarnings
object[]

Warnings grouped by segment, in segment order starting at the requested initialSegmentId. Each response covers AI-generated quality estimation warningsfor up to 100 segments.