Here’s a quick video showing the integration between Hubspot and OnLink
...
Setup Paycor connection in OnLink by selecting “Other HR Assets Source”. Follow instructions here to get the connection parametersEnabling Paycor webhooks allows you to create a Jira or JSM ticket whenever certain events (hire, terminate, employee changes) occur in Paycor. You can enable event notifications in Paycor - instructions are here: https://developers.paycor.com/guides#managing-applications
Create application and get Oauth2 client id and secret values as well as APIm Subscription Key (goes into Org (Subscription) Id)
Simple Client Activation - copy the Refresh Token
...
Follow instructions in our Webhook documentation to understand how OnLink supports webhooks. Here are the config elements you will need to configure Hubspot Paycor webhook:
config:auth_scheme=request_signing_paycor
config:signature_token=<create random secret>
...
Here’s sample field mapping for events related to “Employee” object in Paycor.
key:idemployeeNumber=customfield_10121
map:firstName=customfield_10065
map:lastName=customfield_10066
map:email.emailAddress=customfield_10104
map:employmentDateData.hireDate=customfield_10105
map:workLocation.city=customfield_10053
config:summary='New Hire: ', {customfield_10065}, ' ', {customfield_10066}
Any field supported by Paycor can be mapped in this way.
...