EventDay / Infusionsoft.net

A C# Wrapper around the Infusionsoft.com API
16 stars 22 forks source link

Missing Services and Methods #3

Open mfairch opened 11 years ago

mfairch commented 11 years ago

These are missing from the SDK. Affiliate Program Service - http://help.infusionsoft.com/api-docs/affiliateprogramservice AffiliateService.getRedirectLinksForAffiliate - http://help.infusionsoft.com/api-docs/affiliateservice#getRedirectLinksForAffiliate FunnelService - http://help.infusionsoft.com/api-docs/funnelservice

trbngr commented 11 years ago

Thanks for bringing this up.

I'll try to get to it this week.

jdconley commented 11 years ago

Any update on this? I'm interested in the FunnelService as well.

trbngr commented 11 years ago

I just pushed the FunnelService impl. I don't have time to do the full deserialization right now.

If you look at https://github.com/EventDay/Infusionsoft.net/commit/617923bbab0451a43e96c6c9aa7735736a01f5fe, you can see how the services are implemented.

jdconley commented 11 years ago

I just tried this out and got the following error back from InfusionSoft: "Server returned a fault exception: [0] No method matching arguments: java.lang.String, java.lang.String, java.lang.Integer". The docs seem to show string,string,string,int if you include the apiKey... http://help.infusionsoft.com/api-docs/funnelservice

Looking at your commit, I think the apiKey param is missing, if I understand how the XmlRpc system in here works.

jdconley commented 11 years ago

I created a pull request for commit 652150c that fixes the issue I had.