Validate Field Value Using REST API (T00007)
Last updated
Last updated
this is even more "advanced"
for experts in Salesforce, REST API etc
click cog > "Setup"
enter to Quick Search: "identity"
click: "OAuth and OpenID Connect Settings"
turn on: "Allow OAuth Username-Password Flows"
click cog > "Setup"
enter to Quick Search: "app manager"
click: "App Manager"
click: "New Connected App"
select: "Create a Connected App"
click: "Continue"
enter details for the New Connected App
Connected App Name: Connected REST API
API Name: Connected_REST_API (gets populated automatically)
Contact Email: [your email]
Enable setting OAuth Settings: checked
Callback URL: https://localhost:8080
Selected OAuth Scopes
scroll to Full access (full)
click: "Add"
Disable setting "Require Proof Key for Code Exchange (PKCE) Extension for Supported Authorization Flows": unchecked
click: "Save"
click: "Continue"
click: "Manage Consumer Details"
enter the verification code that was sent to your by email
Copy-paste the record the Consumer Key to your records
Copy-paste the record the Consumer Secret to your records
wait: 10 minutes
In Salesforce:
click: Profile pic
click "Settings"
Enter to Quick Search: "reset"
click: "Reset My Security Token"
click: "Reset Security Token
In your email inbox
search for email with this subject: "Your new Your Developer Edition security token"
record the security token
Navigate to "Test Data"
Click: "+ Add"
select Type: Text
enter Name: "API_SALESFORCE_DOMAIN"
Enter: https:// [ Current My Domain URL ] from Setup> My Domain
click: "Add"
Click: "+ Add"
select Type: Text
enter Name: "API_CONSUMER_KEY"
paste to "Value": the Consumer Key from your records
click: "Add"
Click: "+ Add"
select Type: Text
enter Name: "API_CONSUMER_SECRET"
paste to "Value": the Consumer Secret from your records
click: "Add"
Click: "+ Add"
Click: "+ Add"
select Type: Text
enter Name: "API_SECURITY_TOKEN"
paste to "Value": the User's security token from your records
click: "Add"
Click: "+ Add"
select Type: Text
enter Name: "URL_Salesforce_record"
Enter "[URL]" to "Value"
click: "Add"
Navigate to "Reusable Rules"
Click: "+ New Rule"
Enter Name: "API-0001 - SALESFORCE REST API - Authorize :: API_access_token"
Enter Labels: API, Salesforce
Enter Steps: [copy-paste the line from the code block below]
Click: "Save"
Click: "+ New Rule"
Enter Steps: [copy-paste the line from below]
Enter Name: "SF-0001 - Grab record ID from record URL :: URL_Salesforce_record :: ID_extracted_from_URL"
Enter Labels: API, Salesforce
Enter Steps: [copy-paste the line from the code block below]
Click: "Save"
Navigate to "Test Cases"
Click: "+ Add Test Case"
Enter Description: "T00007 - Validate field value using Salesforce REST API"
Steps:
User's security token
_______
for authorization
to be stored in a global variable in Reusable Rule
Consumer Key
_______
for authorization
to be stored in a global variable in Reusable Rule
Consumer Secret
_______
for authorization
to be stored in a global variable in Reusable Rule