Pulse People icon

Pulse People

People resource from Pulse API

Overview

This node interacts with the "People" resource of the Pulse API, specifically supporting operations to retrieve and update person details. The "Show Person details info" operation fetches detailed information about a specific person by their ID, optionally including related resources such as their associated account.

Common scenarios for this node include:

  • Retrieving detailed profile information of a person in a CRM or HR system.
  • Fetching related account data alongside person details for enriched context.
  • Updating person records based on external triggers or workflows.

For example, you might use this node to get a person's full profile before sending a personalized email or to synchronize person data between systems.

Properties

Name Meaning
Person ID * The unique identifier of the person whose details you want to retrieve or update.
Include Related Resources Optional related resources to include in the response. Currently supports: Account.

Output

The node outputs JSON data representing the person’s details retrieved from the Pulse API. This includes all standard fields of the person record and, if requested, related resources such as the associated account information.

The output structure is a JSON object containing the person’s data fields as returned by the API. There is no binary data output.

Example output snippet (simplified):

{
  "id": "12345",
  "firstName": "John",
  "lastName": "Doe",
  "email": "john.doe@example.com",
  "account": {
    "id": "67890",
    "name": "Acme Corporation"
  }
}

Dependencies

  • Requires an API key credential for authenticating with the Pulse API.
  • The node depends on the Pulse API service being accessible.
  • No additional environment variables are required beyond the API authentication setup.

Troubleshooting

  • Error: The operation "getPersonById" is not supported for resource "people"!
    This indicates an unsupported operation was selected. Verify that the operation name matches exactly one of the supported ones: getPeopleList, createPerson, getPersonById, or updatePerson.

  • Error: The resource "people" is not supported!
    This suggests the resource parameter is incorrect or missing. Ensure the resource is set to "people" when using this node for person-related operations.

  • API Authentication Errors
    If the node fails due to authentication issues, check that the API key credential is correctly configured and has sufficient permissions.

  • Missing Required Parameters
    The "Person ID" property is mandatory for fetching or updating a person. Omitting it will cause errors.

Links and References

Discussion