-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎉Source HubSpot: Adds form_submission and property_history streams #7787
Changes from all commits
199af24
82a2f05
0eb236b
b75cf88
51bfcca
7ca726f
d57cb35
073ccee
c83f648
47fc2e9
70bf991
4af7867
2c47b9b
365ee80
e3c4821
8a2ca7d
f5934ac
47ed536
58af14b
e63ac85
0beda4f
f4767f9
15e450d
bd1a82f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"start_date": "2020-01-01T00:00:00Z", | ||
"credentials": { | ||
"credentials_title": "API Key Credentials", | ||
"api_key": "demo" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"start_date": "2021-10-01T00:00:00Z", | ||
"credentials": { | ||
"credentials_title": "OAuth Credentials", | ||
"client_id": "123456789_client_id_hubspot", | ||
"client_secret": "123456789_client_secret_hubspot", | ||
"refresh_token": "123456789_some_refresh_token" | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"type": ["null", "object"], | ||
"properties": { | ||
"value": { | ||
"type": ["null", "string"] | ||
}, | ||
"source-type": { | ||
"type": ["null", "string"] | ||
}, | ||
"source-id": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same question as here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A Property can either be changed by workflow, form or manully. The id for either is saved in the |
||
"type": ["null", "string"] | ||
}, | ||
"source-label": { | ||
"type": ["null", "string"] | ||
}, | ||
"updated-by-user-id" : { | ||
"type": ["null", "integer"] | ||
}, | ||
"timestamp": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"selected": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"property": { | ||
"type": ["null", "string"] | ||
}, | ||
"vid": { | ||
"type": ["null", "integer"] | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, add
property_history
stream too