How Can We Help?
Tech tutorials, Reviews, How To's
Get Access Token / Salesforce Login API
This is a Salesforce default login request for Access Token. With this request, the Access token will be received as response.
API Call Structure:
curl --location --request POST 'https://login.salesforce.com/services/oauth2/token?grant_type=password
&client_id=XXXXXXXXXX
&client_secret=XXXXXXX
&username=XXXXXX
&password=XXXXXXX'
Sample Response:
Here is the sample response received. The Access Token received here will be useful in constructing the API Calls for updating the certification data.
{
"access_token": "XXXXXXXXXX",
"instance_url": "https://XXXXX.my.salesforce.com",
"id": "https://login.salesforce.com/id/XXXXXX",
"token_type": "Bearer",
"issued_at": "XXXXXXXXXX",
"signature": "XXXXXXXXXXXXXXXXX"
}