- Knowledge Base
- Developer's Zone
- Rest API 5.0
-
Roadmap
-
Knowledgebase Documents
-
Installation and System Setup
-
Setup Data Catalog
-
Connectors
-
Data Discovery
-
Self Service
-
Access Management
-
Data Quality
-
Data Literacy
-
Privacy Compliance
-
Reporting
-
Architecture, Security & Releases
-
Developer's Zone
-
Advanced Tools
-
Record of Processing Activities (ROPA)
-
Others
-
Release6.0 User Guide
-
Release6.1 Features
-
Data Catalog
-
News
-
Deactivated_Old
-
Release6.3 Deep Dive Articles
Message Services
Post Message API
This API is used to send messages to other users.
Mandatory Field: objectId, objectType, body, recipientUsers, sender.
Method | URL |
postMessage |
/api/message/user |
Request Body
{
"body": "string",
"objectId": 0,
"objectType": "string",
"recipientUsers": [
"string"
],
"sender": "string"
}
Example
{
"body": "Hi Kumar, please look into this",
"objectId": 1005,
"objectType": "table",
"recipientUsers": [
"kumar"
],
"sender": "admin"
}
Response Body
{
"status": true,
"statusCode": "Your message is sent successfully",
"statusMsg": "",
"response": {}
}