Actions11
Overview
This node interacts with the Zid API to update customer information. It allows users to update specific fields of a customer record by providing the customer's ID and the fields to be updated. This is useful in scenarios where customer details such as email or phone number need to be modified programmatically within an automation workflow.
Use Case Examples
- Updating a customer's email and phone number based on new input from a form submission.
- Modifying customer details in bulk by iterating over a list of customer IDs and updating their records.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the customer to update. |
| Additional Fields | A collection of optional fields to update for the customer, including Name, Description, Email, and Phone. |
Output
JSON
json- The updated customer object returned from the Zid API after the update operation.
Dependencies
- Zid API OAuth2 credentials required for authentication.
Troubleshooting
- Missing or invalid OAuth2 credentials will cause authentication errors. Ensure the OAuth2 credentials are correctly configured and tokens are valid.
- Providing an invalid or non-existent customer ID will result in an error from the Zid API indicating the resource was not found.
- If required fields are missing or data types are incorrect in the additional fields, the API may reject the update request. Validate input data before sending.
Links
- Zid API Documentation - Official documentation for the Zid API, including endpoints and authentication details.