Use Postman to send and receive API requests to Salesforce to aid in developing and testing.
- Salesforce Org
- Setup
- App Manager
- (new or select one)
- API (Enable OAuth Settings) to get Consumer KEY and SECRET
- Postman
- POST
https://login.salesforce.com/services/oauth2/token
Body
->form-data
- username: your org username
- passowrd (pass+token) token found: click your name -> settings -> on left 'Reset My Security Token'
- grant_type: password,
- client_id: from step 1.
- client_secret: from step 1.
- New requests: Use URL from step 2. instance_url
Authorzation
:Bearer Token
token from step 2.