Kevin_Tuttle1_0-1674848630351.png

Two-Step Authentication with Webhooks

Kevin_Tuttle1
Marketo Employee
Marketo Employee

When using webhook connections with Marketo, you will often come across an API connection with a two-step process. The first connection needs to send the authentication information, after which you get back an access token, and then that token needs to be provided in the second (and any other subsequent) queries to provide the necessary authentication. Both the Marketo and SFDC REST APIs follow this model. Marketo's Webhook functionality, though, is only a one-step process, so it's necessary to employ separate Webhook configurations to get this to work.

 

The first step is to create a new custom field on the Person object to hold the access token value. This field will hold the temporary, generated access token value between webhook connections.

Kevin_Tuttle1_0-1674848630351.png

 

Next step is to create a Webhook just to do the initial authentication step. It will save the returned token value in the Access Token field. Here is an example that connects to SFDC:

Kevin_Tuttle1_1-1674848950290.pngKevin_Tuttle1_2-1674848966741.png

 

The last step is to create the Webhook that does the actual work with the remote API. Here I setup one that can update a Lead's Sync_To_Marketo__c field. Note the custom headers that pass captured Access Token value through on the Authorization header.

Kevin_Tuttle1_3-1674849123782.png

 

5353
5
5 Comments