Calls
Create, update, delete, and query information regarding calls.
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 Calls (Subject) VALUES ('A test call')
INSERT INTO Calls (Subject, ModuleName) VALUES ('A test call', 'Contacts')
INSERT INTO Calls (Subject, ModuleName, RelatedTo_Id) VALUES ('A test call', 'Contacts', '2788704000120533263')
Required fields: Subject, ModuleName if RelatedTo_Id is specified.
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 Calls WHERE Id = '3152079000000153079'
Update
You must specify the Id in the WHERE clause when executing an update against this table.
UPDATE Calls SET Subject = 'Updated from API' WHERE Id = '3152079000000484001'
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 | False |
The unique identifier for this record. |
| ContactName_Id | String | False |
The Id of the contact of the call. |
| ContactName_FirstName | String | False |
The First Name of the contact of the call. |
| ContactName_LastName | String | False |
The Last Name of the contact of the call. |
| Subject | String | False |
The subject of the call. |
| CallPurpose | String | False |
The purpose of the call. |
| RelatedTo_Id | String | False |
The Id of the person this call was related to. |
| CallType | String | False |
The type of the call. |
| CallStartTime | Datetime | False |
The time of the start of the call. |
| CallDuration | String | False |
The duration of the call. |
| CallDuration_inseconds_ | Int | False |
The duration of the call in seconds. |
| Description | String | False |
The description of the call. |
| CallResult | String | False |
The result of the call. |
| Billable | Bool | False |
Whether this call was billable or not. |
| CallOwner_Id | String | False |
The Id of the owner of the call. |
| CreatedBy_Id | String | False |
The Id of the User who created the record. |
| ModifiedBy_Id | String | False |
The Id of the User who modified the record. |
| ModifiedBy_FirstName | String | False |
The First Name of the User who modified the record. |
| ModifiedBy_LastName | String | False |
The Last Name of the User who modified the record. |
| CreatedTime | Datetime | False |
The time when the record was created. |
| Tag | String | False |
The tags of the call. |
| ModifiedTime | Datetime | False |
The time when the record was modified. |
| Reminder | String | False |
The reminder set for this call. |
| CallStatus | String | True |
The status of the call. |
| ModuleName | String | False |
The name of the module this call belongs to. |
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 |
| Word | String |
Used to search for a specific word in records. |
| DuplicateCheckFields | String |
The field/s to be used for checking in an upsert. |
| Converted | Boolean |
Set to true to return only converted records. |
| Approved | Boolean |
Set to true to return only approved records. |
| CustomViewId | String |
The custom view Id to be used for filtering this record. |