POST
/prime/webui/sendNotification
Post notifications
Post notifications. Use this to create data.
curl example
curl -X POST 'https://<host>/prime/webui/sendNotification' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{}'OpenAPI spec
"post": {
"tags": [
"SendNotification"
],
"summary": "Post notifications",
"requestBody": {
"content": {
"application/json -patch+json": {
"schema": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RiskIndicationDto"
}
},
"nullable": true
}
},
"application/json": {
"schema": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RiskIndicationDto"
}
},
"nullable": true
}
},
"text/json": {
"schema": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RiskIndicationDto"
}
},
"nullable": true
}
},
"application/*+json": {
"schema": {
"type": "object",
"additionalProperties": {
"type": "array",
204
"items": {
"$ref": "#/components/schemas/RiskIndicationDto"
}
},
"nullable": true
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}