cancel
Showing results for 
Search instead for 
Did you mean: 
Announcements
MitchZ
Level 1

Nobody responding to SDK applications?

Hi, I applied for the SDK here https://profile.intuit.ca/sdk-for-developers/  well over a month ago, and a few weeks ago as well with a different email after getting no response. It states when finishing that there would be a response in 48 hours, but this is quite a long time beyond that at this point. 

So here I am, as I'm not sure what else to do to get a response.

Any help would be appreciated,
Thanks.

 

3 Comments 3
zachbonham
Level 1

Nobody responding to SDK applications?

Did you ever get an answer?

I'm trying to see what kind of automation we can enable, both importing and exporting, data from ProFile.  I've signed up for their SDK but never received a response.

 

We have an old SDK from about 2019 or 20220 with Excel macro examples that I'm using as guide so far.  The SDK product seems not to be documented very well.

MitchZ
Level 1

Nobody responding to SDK applications?

Unfortunately not.

You can still get some automation done by making a Library DLL, referencing the ProFile Plugin libraries and registering the COM ID of your compiled library to the correct registry though. (and placing the library in your ProFile install folder and using that path to register at)

Example batch commands to register it:

C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe /codebase "PathToMyDLL/MyAutomation.dll"
reg add "HKEY_CURRENT_USER\SOFTWARE\GreenPoint\ProFile" /v "PlugIn" /t REG_SZ /d "{COM-ID-HERE}"

 But unfortunately you're mostly limited to just implementing listeners to certain events, I never managed to find a way to get something added to menus using that very old SDK manual this information was from.

zachbonham
Level 1

Nobody responding to SDK applications?

I appreciate the update and the pointer!  Will keep hacking! :)

 

Thank you!

 

Z