Messages Model
Overview
Handles user messages and notifications.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | id field | ❌ |
| sender | string | sender field | ✅ |
| Recipients | array | Recipients field | ❌ |
| attachments | array | attachments field | ❌ |
| message_type | string | message_type field | ❌ |
| subject | string | subject field | ❌ |
| body | string | body field | ✅ |
| status | boolean | status field | ❌ |
| label | string | label field | ❌ |
| message_template_id | string | message_template_id field | ❌ |
| created_at | date | created_at field | ❌ |
| modified_at | date | modified_at field | ❌ |
| sites_id | string | sites_id field | ❌ |
| org_id | string | org_id field | ❌ |
| application_id | string | application_id field | ❌ |
| screen_id | string | screen_id field | ❌ |
| menuitem_id | string | menuitem_id field | ❌ |
| object_id | string | object_id field | ❌ |
| sub_object_id | string | sub_object_id field | ❌ |
| participants_id | string | participants_id field | ❌ |
Sample JSON
{
"id": "example_value",
"sender": "example_value",
"Recipients": "example_value",
"attachments": "example_value",
"message_type": "example_value",
"subject": "example_value",
"body": "example_value",
"status": "example_value",
"label": "example_value",
"message_template_id": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"sites_id": "example_value",
"org_id": "example_value",
"application_id": "example_value",
"screen_id": "example_value",
"menuitem_id": "example_value",
"object_id": "example_value",
"sub_object_id": "example_value",
"participants_id": "example_value"
}