Authentication
All requests made to Propel or Salesforce endpoints require a valid Access Token
. There are various mechanisms to retrieve an access token that are listed in Salesforce documentation. We highly recommend using OAuth 2.0 for security reasons. See the Salesforce Documentation here.
Server-side Flow (OAuth 2.0) Example
Use the server-side flow when you can securely store your application's secret key. This example is a simple Express application using the Node.js library JSForce to handle authentication.
You can see the source code for this example here.
1. Create a Salesforce Connected App
First, you'll need to open a connection with Salesforce in order to make API calls. You will get a client and secret key after creating a connected app.
- In Salesforce Lightning, Go to Salesforce Setup > App Manager
- Click
New Connected App
on the App Manager page - Name:
My Propel Sample App
, API Name:Propel_Sample_App
, Contact Email:your_email
- Enable OAuth Settings
- Callback URL:
http://localhost:4000/oauth2/callback
- Selected OAuth Scopes:
(full), (api), (web), (refresh_token, offline_access)
It is recommended to have at least these four scopes selected. - Save
Make sure to save your client and secret key for connecting your application.
2. Use your credentials to obtain an Access Token
First, configure your application to leverage the JSforce OAuth mechanism by entering your clientId
, clientSecret
, redirectUri
. Also, enter the scope of authentication for the application. Make sure that your scope
matches the defined scope in your Connected App.
Get an Authorization Code
tip
If OAuth 2.0 is not needed for your app, use the SOAP login API instead of the OAuth flow. Only your username and password are required to authenticate. You may need to combine your password+security token
.
Exchange Authorization Code for an Access Token
You've now successfully received all the information you need to begin making calls to the Propel API.
3. Make a request to Propel Endpoints
Using your successful authentication, make a request to the GET /v2/item
endpoint (see highlighted lines). This sample code shows how to make the request using JSForce and the Axios library.
When sending requests, you must include an Authorization
header with the following information Bearer <Access Token>