// Creates a notification for current user with a link to a an existing Configuration Wizard with some inputs prefilled
api.notificationApi()
.withRecipient(api.user("loginName"))
.withTitle("New opportunity found!")
.withInfoStatus()
.withSource("392.DB")
.withContextLink("here.", AppPages.MD_WIZARD_PAGE, [
id: 48,
targetPageInputs: [
TextUserEntry: "Hello World!",
Margin : 10,
Products : "BR1600SI",
InputMatrix : [
[name: "CONTEXT", RACI: "R", comment: "no comment"],
[name: "LINKING", RACI: "A,C", comment: "no comment"],
[name: "EXPERIMENT", RACI: "A", comment: "With comment", selected: true],
[name: "WITH", RACI: "I", comment: "Without comment"],
[name: "INPUT", RACI: "I, A", comment: "no comment", selected: true],
[name: "MATRIX", RACI: "I", comment: "All comments", selected: true]]
]
])
.withMessage("Start new Wizard for Product: BR1600SI")
.send() |