You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| user_id |```optional```| The ID of the owner of the call log |
889
+
| activity_id |```optional```| If specified, this activity will be converted into a call log, with the information provided. When this field is used, you don't need to specify deal_id, person_id or org_id, as they will be ignored in favor of the values already available in the activity. |
890
+
| subject|```optional```| Name of the activity this call is attached to |
891
+
| duration|```optional```| Call duration in seconds |
892
+
| outcome|```required```| Describes the outcome of the call |
893
+
| from_phone_number|```optional```| The number that made the call |
894
+
| to_phone_number|```required```| The number called |
895
+
| start_time|```required```| The date and time of the start of the call in UTC. Format: YYYY-MM-DD HH:MM:SS. |
896
+
| end_time |```required```| The date and time of the end of the call in UTC. Format: YYYY-MM-DD HH:MM:SS. |
897
+
| person_id |```optional```| The ID of the Person this call is associated with |
898
+
| org_id |```optional```| The ID of the Organization this call is associated with |
899
+
| deal_id |```optional```| The ID of the Deal this call is associated with |
> Deletes a call log. If there is an audio recording attached to it, it will also be deleted. The related activity will not be removed by this request. If you want to remove the related activities, please use the endpoint which is specific for activities.
974
+
975
+
976
+
```php
977
+
function deleteACallLog($id)
978
+
```
979
+
980
+
#### Parameters
981
+
982
+
| Parameter | Tags | Description |
983
+
|-----------|------|-------------|
984
+
| id |```required```| ID of the callLog |
985
+
986
+
#### Example Usage
987
+
988
+
```php
989
+
990
+
$id = 'id';
991
+
992
+
$callLogs->deleteACallLog($id);
993
+
994
+
```
995
+
809
996
[Back to List of Controllers](#list_of_controllers)
0 commit comments