Send notification to solution groups (SLN_GRP)

Send notification to solution groups (SLN_GRP)

POST {{baseURL}}/tool/organizations/{{orgId}}/notifications

Send messages to predefined groups within a solution.

Headers

Name
Value

Authorization

Bearer <token>

Bearer Token - format: BEARER XXXXXXXXXXXXXX

Body

Configure the following properties in the JSON body:

Name
Type
Description

title

string

Title of the notification.

text

string

Notification message.

scope

string

"SLN_GRP" -groups: list solution groups using a comma-delimited format for multiple groups. Solution groups defined in Jigx Management> Solution > Groups

solutionId

string

"{{solutionId}}", available in Jigx Management> Solution Details

JSON body
{
  "content": {
    "title": "Sales target",
    "text": "This quarter's sale target has been reached",
    "screen":"jig"
  },
  "scope": "SLN_GRP",
  "groups": [
    "sales","finance"
  ],
  "solutionId": "{{solutionId}}"
}

Response

Last updated

Was this helpful?