Renaissance notes. Updated webhook script and small items for DataSnipper. Need to finish that workflow for them...

This commit is contained in:
Norm Rasmussen
2023-12-05 17:33:38 -05:00
parent 6b3ba2e5e1
commit 54cddb23f1
6 changed files with 137 additions and 82 deletions

View File

@ -2,18 +2,22 @@ import json
import requests
URL = "https://webhooks.workato.com/webhooks/rest/3aa0af60-6363-4cc6-9f2a-34b9e132cc2c/hubspot-webhook"
DATA = {
"health_category": "Test value",
"package": "Test value",
"contract_expires": "Test value",
"segment": "Test value",
"onboarding_end_date": "Test value",
"onboarding_stage": "Test value",
"full_name": "Test value",
"email": "Test value",
"company": "Test value",
"industry": "Test value",
"payload": {
"company": "MJ CPA AUDIT & TAX (RSMA)",
"package": "Advanced",
"segment": "",
"industry": "ACCOUNTING",
"company_domain": "mjcpa.com",
"health_category": 1,
"contract_expires": 1716768000000,
"onboarding_stage": "Start",
"onboarding_end_date": ""
},
"params": {},
}
HEADERS = {"content-type": "application/json"}