This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Add `activityType` and `teamId` attributes to engagements stream. * tidy: remove references to `engagements` stream as it's no longer supported. * feat: Add /calls stream. * docs: Add references to Calls and Meetings API docs.
- Loading branch information
1 parent
2a98e9e
commit 9abc312
Showing
5 changed files
with
99 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"type": "object", | ||
"properties":{ | ||
"id": { | ||
"type": ["null","string"] | ||
}, | ||
"createdAt": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"updatedAt": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"archived": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"properties": { | ||
"type": "object", | ||
"properties": { | ||
"createdate": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"hs_call_body": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_duration": { | ||
"type": ["null", "string"], | ||
"format": "number" | ||
}, | ||
"hs_call_from_number": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_recording_url": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_status": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_title": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_to_number": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_direction": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_activity_type": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_disposition": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_callee_object_type_id": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_call_callee_object_id": { | ||
"type": ["null", "string"] | ||
}, | ||
"hs_lastmodifieddate": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"hs_timestamp": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"hubspot_owner_id": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters