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
rupesh ranjanrupesh ranjan 

I want to integrate ASP.NET page throgh REST API

I want to integrate ASP.NET page throgh REST API.

What are the procedure
Ashish DevAshish Dev
Follow quickstart for rest api provided by salesforce as a starting point.

@ https://developer.salesforce.com/docs/atlas.en-us.198.0.api_rest.meta/api_rest/quickstart.htm
 
Ezdhan Hussain S KEzdhan Hussain S K
Hi rupesh,

you haven't mentioned if you(salesforce) is consumer of data or provider of Data.

If you are consumer of data then you have to expose your class with a rest resource url so that .net system can invoke.

If you are provider of data you have to send https request to .net system.

Below are some URL which will help you in integration patterns & best practices
https://developer.salesforce.com/page/Integration
https://developer.salesforce.com/page/Digging_Deeper_into_OAuth_2.0_on_Force.com
https://developer.salesforce.com/page/REST_API

Hope That Helps..!