Meetings
Stores planned meetings with agenda, participants, start and end times, reminders, and follow-up status.
Table-Specific Information
Select
This table supports COQL for filtering, meaning that most filters comparing columns to values are submitted server-side.
Insert
INSERT INTO Meetings (Title, `From`, To) VALUES ('A test event', '2018/05/29 18:00:00', '2018/05/29 20:30:00')
Required fields: Title, From, To.
Any field which is not read-only (ReadOnly = false in the table below) can be inserted.
Delete
You must specify the Id in the WHERE clause when executing a delete against this table.
DELETE FROM Meetings WHERE Id = '3152079000000153079'
Update
You must specify the Id in the WHERE clause when executing an update against this table.
UPDATE Meetings SET Description = 'Changed from the API.' WHERE Id = '3152079000000154219'
Required fields: Id.
Any field which is not read-only (ReadOnly = false in the table below) can be updated.
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | True |
Unique identifier of the meeting. |
| Title | String | False |
The title or subject of the meeting. |
| Location | String | False |
The location where the meeting is scheduled. |
| Allday | Bool | False |
Indicates whether the meeting lasts the entire day. |
| From | Datetime | False |
The start date and time of the meeting. |
| To | Datetime | False |
The end date and time of the meeting. |
| Host_Id | String | False |
Unique identifier of the meeting host. |
| Host_FirstName | String | True |
First name of the meeting host. |
| Host_LastName | String | True |
Last name of the meeting host. |
| Host_Email | String | True |
Email address of the meeting host. |
| Host_Name | String | True |
Full name of the meeting host. |
| ContactName_Id | String | False |
Unique identifier of the contact associated with the meeting. |
| ContactName_Name | String | True |
Full name of the contact associated with the meeting. |
| RelatedTo_Id | String | False |
Unique identifier of the related record. |
| RelatedTo_Name | String | True |
Name of the related record. |
| Repeat_Id | String | False |
Unique identifier of the repeat schedule. |
| Repeat_Name | String | True |
Name of the repeat schedule. |
| Reminder | String | False |
Reminder settings for the meeting. |
| CreatedBy_Id | String | False |
Unique identifier of the user who created the meeting. |
| CreatedBy_FirstName | String | True |
First name of the user who created the meeting. |
| CreatedBy_LastName | String | True |
Last name of the user who created the meeting. |
| CreatedBy_Email | String | True |
Email address of the user who created the meeting. |
| CreatedBy_Name | String | True |
Full name of the user who created the meeting. |
| ModifiedBy_Id | String | False |
Unique identifier of the user who last modified the meeting. |
| ModifiedBy_FirstName | String | True |
First name of the user who last modified the meeting. |
| ModifiedBy_LastName | String | True |
Last name of the user who last modified the meeting. |
| ModifiedBy_Email | String | True |
Email address of the user who last modified the meeting. |
| ModifiedBy_Name | String | True |
Full name of the user who last modified the meeting. |
| CreatedTime | Datetime | False |
Date and time when the meeting was created. |
| ModifiedTime | Datetime | False |
Date and time when the meeting was last modified. |
| Participants | String | False |
List of participants invited to the meeting. |
| Description | String | False |
Detailed description of the meeting. |
| Check-InTime | Datetime | True |
Date and time when the participant checked in. |
| Check-InBy_Id | String | False |
Unique identifier of the user who performed the check-in. |
| Check-InBy_Name | String | True |
Name of the user who performed the check-in. |
| Check-InComment | String | True |
Comment added during check-in. |
| Check-InSub-Locality | String | True |
Sub-locality where the check-in occurred. |
| Check-InCity | String | True |
City where the check-in occurred. |
| Check-InState | String | True |
State where the check-in occurred. |
| Check-InCountry | String | True |
Country where the check-in occurred. |
| Latitude | Double | True |
Latitude coordinate of the check-in location. |
| Longitude | Double | True |
Longitude coordinate of the check-in location. |
| ZipCode | String | True |
Postal code of the check-in location. |
| Check-InAddress | String | True |
Full address of the check-in location. |
| CheckedInStatus | String | True |
Current check-in status of the meeting. |
| Tag | String | False |
User-defined tags for categorization or filtering. |
| ParticipantsReminder | String | False |
Reminder configuration for meeting participants. |
| RecordId | Long | True |
Internal identifier used for processing the record. |
| LastActivityTime | Datetime | False |
The last date and time when the meeting was interacted with. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| DuplicateCheckFields | String |
The field or fields used to detect duplicate records during an upsert. The REST API supports multiple fields, but the BULK API supports only one. |
| Trigger | String |
Used to trigger workflow rules when a record is inserted into the CRM account. |
| CustomViewId | Long |
Identifier for the custom view used to filter this record. This works only when useCOQL is set to false. |