User
This guide outlines the operations you can perform for managing Users in Salesforce using the Salesforce connector. These operations allow you to retrieve user information efficiently.
Overview
- Retrieve detailed information about a specific User in Salesforce.
- User ID: Specify the unique identifier of the User (String, required).
- Example JSON Payload
{
"UserID": "0051t000000XYZ123456"
}
Expected Output
- When the operation is successfully executed, you will receive details about the User, including:
- User ID: The unique identifier of the User.
- Name: Full name of the User.
- Email: Email address of the User.
- Role: Role of the User within the organization.
- Status: Current status of the User account (e.g., Active, Inactive).

Overview
- Fetch multiple Users based on specified criteria.
- Filters (Optional): Define criteria to filter Users (Object).
Example JSON Payload
{
"Filters": {
"IsActive": true
}
}
Expected Output
- When the operation is successfully executed, you will receive a list of Users that match the search criteria, including:
- User ID: The unique identifier for each User.
- Name: Full name of the User.
- Email: Email address of the User.
- Role: Role of the User within the organization.

Updated 5 months ago