Where are current code samples?

A problem was reported with an application I developed that uses InfusionSoft’s API.

I see that the API “key” method for making requests is no longer supported, so I’m trying to find a newer library. I was using the .NET

isdnv1.0.1.1-binaries\InfusionSoftDotNet.dll

library which was pretty simple to use.

m_isdnApiURL = "https://mysite.infusionsoft.com/api/xmlrpc"
isdnAPI._ApiKey = m_isdnApiKey ' NOT SHOWN
isdnAPI._ApiURL = m_isdnApiURL
Dim arRtn As XmlRpcStruct() = isdnAPI.dsFindByField("Contact", 1, 0, "Email", MyAuthRequest.Email, returnFields)

The call to isdnAPI.dsFindByField() is failing with an error

            Dim arRtn As XmlRpcStruct() = isdnAPI.dsFindByField("Contact", 1, 0, "Email", MyAuthRequest.Email, returnFields)

Is there another .NET library that does something similar? The code samples at:

https://developer.infusionsoft.com/resources/code-examples/

Seem to be woefully out of date (created 6 years ago).

I also tried …

But the app.config files so the sample solution will not build.
I could research it further but this also was created around 6 years ago.

I could share other things that I’ve tried but will keep it to this.

Thanks, in advance, for any help/pointers/suggestions on how to proceed.

Unfortunately, we don’t have current samples that we can readily direct you to, although such are in the pipeline for us to work on.

The EventDay C# SDK is developed by a third party, so I would recommend filing an issue ticket in their repository if something isn’t working correctly.