In Part 2 of this Agentforce integration series, I show how to import the OAuth token cURL request into Postman. At this stage, we are only setting up the request template — the client credentials will be added later in the next video.
By the end of this video, you will have the OAuth token request properly loaded inside Postman, ready for authentication configuration.
Topics Covered:
✔ Copying the OAuth token cURL request
✔ Importing cURL into Postman
✔ Understanding request structure (URL, headers, body)
✔ Preparing Postman for Agentforce OAuth workflow
✔ Next steps toward generating an access token
cURL Used in This Video:
curl https://{MY_DOMAIN_URL}/services/oauth2/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id={CONSUMER_KEY}' \
--data-urlencode 'client_secret={CONSUMER_SECRET}'