Skip to main content
POST
/
api2
/
v1
/
lqa
/
assessments
/
reports
/
emails
Send email(s) with LQA reports
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/lqa/assessments/reports/emails \
  --header 'Content-Type: application/json' \
  --data '{
  "jobParts": [
    {
      "uid": "<string>"
    }
  ],
  "recipientUsers": [
    {
      "uid": "<string>"
    }
  ],
  "ccAddress": "<string>",
  "bccAddress": "<string>",
  "message": "<string>",
  "subject": "<string>",
  "organizationEmailTemplate": {
    "uid": "<string>"
  }
}'

Body

application/json
jobParts
object[]
required

JobParts for which the LQA reports should be sent

Maximum length: 100
recipientUsers
object[]
required
Maximum length: 100
ccAddress
string
bccAddress
string
message
string

Must not be empty if organizationEmailTemplate is not null.

subject
string
Required string length: 1 - 2147483647
organizationEmailTemplate
object

Response

Emails created

I