Back to Salesforce Integrations
Handler · Version 1

Salesforce User Retrieve Salesforce

Download GitHub

About

Retrieves a Salesforce User record with the given Account Id.

This handler essentially has two phases: authentication and record retrieval.

  • The handler uses the SOAP API login method to retrieve the authentication details that are required for making the REST API requests. The required authentication values are instance and session id, these two values are retrieved by the login() helper method in the handler.

  • The handler uses the REST API to retrieve the Salesforce user. The handler's return variables are mapped from the Salesforce fields as show here (with the name of the Salesforce field on the left pointing to the name of the corresponding return variable):

    • Id => Account ID
    • Username => Username
    • LastName => LastName
    • FirstName => FirstName
    • Name => Name
    • CommunityNickname => CommunityNickname
    • Alias => Alias
    • Email => Email
Configurations
Name Description Sample
username The username of the account that will be used for record retrieval
password The password of the account that will be used for record retrieval.
token The security token associated with the account used for record retrieval. To reset this value, log into Saleforce using the desired account and navigate to Setup -> My Personal Information -> Reset Security Token. A new token will be emailed to you.
Parameters
Name Description Sample
Account Id The Id of the Salesforce User that will be retrieved
Results
Name Description
Account Name
Account Site
Type
Industry
Annual Revenue
Rating
Phone
Fax
Website
Ownership
Id
Username
LastName
FirstName
Name
CommunityNickname
Alias
Email
Changelog

Salesforce User Retrieve V1 (2017-07-13)

  • Initial version. See README for details.
Download GitHub

On This Page

Other Versions

Looking for a workflow engine? Learn more about the Kinetic Data Enterprise Workflow Platform. Check it out
Return to Top