POST
/prime/webui/emailNotification/SendMail
Send mail
Send mail. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/emailNotification/SendMail' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{"$ref":"#/components/schemas/SmtpMailDto"}'OpenAPI spec
"post": {
"tags": [
"Mail"
],
"summary": "Send mail",
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"$ref": "#/components/schemas/SmtpMailDto"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/SmtpMailDto"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/SmtpMailDto"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/SmtpMailDto"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}