SOLVED

Re: API call from Marketo to 3rd part

Go to solution
Rasmus_Bidstru1
Level 4

API call from Marketo to 3rd part

Hi

Im working on a project that requires us to sent two data values to a 3rd part software company.

Case: 
We have a 'my page' for each user, if they uncheck a specific boolean, this value needs to be sent via SOAP or REST to a 3rd party so they can use the data.

Is this possible? 
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: API call from Marketo to 3rd part

You can use a Webhook, which is Marketo's outbound API: search the developer docs. In this particular case you might also consider posting to your 3rd-party service directly from the browser (provided it's cross-domain compatible) so you don't do anything from the Marketo server itself.

View solution in original post

2 REPLIES 2
SanfordWhiteman
Level 10 - Community Moderator

Re: API call from Marketo to 3rd part

You can use a Webhook, which is Marketo's outbound API: search the developer docs. In this particular case you might also consider posting to your 3rd-party service directly from the browser (provided it's cross-domain compatible) so you don't do anything from the Marketo server itself.
Rasmus_Bidstru1
Level 4

Re: API call from Marketo to 3rd part

That makes sence, thanks for the advice