function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rick RoseRick Rose 

API log of attempted connections?

We have developed a REST service that should be pinged from Authorize.net's Silent Post URL feature with an XML post that we can ingest. It works when we test it manually from the apex workbench, but we're seeing nothing come through from Authorize.net. Authorize.net has given us the specific IP addresses we should see traffic from, is there any way to see a log to know if any attempts were even made? 
Daniel BallingerDaniel Ballinger
So you want Authorize.net to call into your custom REST service?

Is your RESTful web service public? If not, Authorize.NET would need to include the "Authorization: Bearer securityToken" header with each request to authenticate the request.

You can see details for how to make a public RESTful web service in - Quick Tip – Public RESTful Web Services on Force.com Sites (https://developer.salesforce.com/blogs/developer-relations/2012/02/quick-tip-public-restful-web-services-on-force-com-sites.html)