POST /callLogs

Adds a new call log.

Servers

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
person_id Integer No

The ID of the person this call is associated with

start_time String Yes

The date and time of the start of the call in UTC. Format: YYYY-MM-DD HH:MM:SS.

to_phone_number String Yes

The number called

subject String No

The name of the activity this call is attached to

outcome String Yes

Describes the outcome of the call

Possible values:

  • "left_message"
  • "busy"
  • "left_voicemail"
  • "wrong_number"
  • "connected"
  • "no_answer"
org_id Integer No

The ID of the organization this call is associated with

duration String No

The duration of the call in seconds

from_phone_number String No

The number that made the call

deal_id Integer No

The ID of the deal this call is associated with. A call log can be associated with either a deal or a lead, but not both at once.

activity_id Integer No

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. The activity_id must refer to a call type activity.

lead_id String No

The ID of the lead in the UUID format this call is associated with. A call log can be associated with either a deal or a lead, but not both at once.

note String No

The note for the call log in HTML format

user_id Integer No

The ID of the owner of the call log. Please note that a user without account settings access cannot create call logs for other users.

end_time String Yes

The date and time of the end of the call in UTC. Format: YYYY-MM-DD HH:MM:SS.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.