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
{
"content": {
"title": "Sales target",
"text": "This quarter's sale target has been reached",
"screen":"jig"
},
"scope": "SLN_GRP",
"groups": [
"sales","finance"
],
"solutionId": "{{solutionId}}"
}Response
{
"id": 1,
{
"organizationId": "{{orgId}}",
"region": "us-east-1",
"notificationId": "85f22fef-1ebc-4dcd-961c-cf8b915c3245",
"scope": "SLN_GRP",
"solutionId": "{{solutionId}}",
"state": "QUEUED",
"startAt": "2025-04-04T09:04:33.446Z",
"content": {
"title": "Sales target",
"text": "This quarter's sale target has been reached",
"screen": "jig",
"inputs": {}
},
"createdAt": "2025-04-04T09:04:33.446Z",
"createdBy": "{{userId}}",
"updatedAt": "2025-04-04T09:04:33.446Z",
"updatedBy": "{{userid}}"
}{
"message": "Unauthorized"
}PreviousSend notification to all solution users (SLN)NextSend notification to the organization (ORG)
Last updated
Was this helpful?