Bizdata Salesforce Testing API demonstrates OAuth2.0 pagination for Salesforce datasets.
Method: GET
URL: {{base_url}}/services/data/v1.0/query/?q=SELECT+CUSTOMER_ID,CUSTOMERNAME,CUSTOMEREMAIL,CUSTOMERPHONE+FROM+QA_CUSTOMER_DATA
Type: OAuth 2.0
Refresh Token Endpoint URL: {{base_url}}/api/oauth2/token
Headers:
{
"Content-Type":"application/x-www-form-urlencoded"
}
Body:
{
"grant_type":"password",
"client_id":"{{client_id}}",
"client_secret":"{{client_secret}}",
"username":"training@bizdata360.com",
"password":"B!zdata@360"
}
Numeric Parameters:
| Parameter | Value | Description |
| Minimum Number | 0 | Minimum records per page |
| Maximum Number | 1000 | Maximum records per page |
Notes:
- Follows Salesforce query structure.
Authentication Instructions:
To acquire the Base URL and create your own Client ID and Secret, please refer to the My Profile section within your Bizdata account.
