Send notification to all solution users (SLN)
Send notification to all solution users (SLN)
POST {{baseURL}}/tool/organizations/{{orgId}}/notifications
Notify all users within a particular 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" for users of the solution.
solutionId
string
"{{solutionId}}", available in Jigx Management> Solution Details.
{
"content": {
"title": "Weekly timesheets",
"text": "Reminder to log your time for the week",
"screen":"jig"
},
"scope": "SLN",
"solutionId": "{{solutionId}}"
}Response
{
"organizationId": "{{orgId}}",
"region": "us-east-1",
"notificationId": "85f22fef-1ebc-4dcd-961c-cf8b915c3245",
"scope": "SLN",
"solutionId": "{{solutionId}}",
"state": "QUEUED",
"startAt": "2025-04-04T09:04:33.446Z",
"content": {
"text": "Reminder to log your time for the week",
"title": "Weekly timesheets",
"screen": "jig",
"inputs": {}
},
"createdAt": "2025-04-04T09:04:33.446Z",
"createdBy": "{{userId}}",
"updatedAt": "2025-04-04T09:04:33.446Z",
"updatedBy": "{{userid}}"
}{
"message": "Unauthorized"
}Last updated
Was this helpful?