Woovi icon

Woovi

Automate Woovi workflow API

Overview

This node operation creates a new customer in the Woovi system. It is useful for automating customer management workflows, such as adding new customers to a payment or subscription platform. For example, it can be used in e-commerce or subscription services to automatically register customer details when a new user signs up.

Use Case Examples

  1. Automatically create a customer record in Woovi when a new user registers on your website.
  2. Add customer details to Woovi from a CRM system to synchronize customer data.

Properties

Name Meaning
Name Name of the customer, required for creating the customer.
taxID Tax ID of the customer, optional but useful for tax and billing purposes.
Email Email address of the customer, optional but useful for communication.
Phone Phone number of the customer, optional for contact purposes.
Address Collection of address details including zipcode, street, number, neighborhood, city, state, country, and complement. Optional but if provided, all fields except complement must be filled.

Output

JSON

  • id - Unique identifier of the created customer.
  • name - Name of the created customer.
  • taxID - Tax ID of the created customer.
  • email - Email of the created customer.
  • phone - Phone number of the created customer.
  • address
    • zipcode - Postal code of the customer's address.
    • street - Street name of the customer's address.
    • number - Street number of the customer's address.
    • neighborhood - Neighborhood or district of the customer's address.
    • city - City name of the customer's address.
    • state - State or province of the customer's address.
    • country - Country of the customer's address.
    • complement - Additional address information of the customer's address.

Dependencies

  • Woovi API credentials required for authentication.

Troubleshooting

  • Common issues include missing required fields such as 'Name', which will cause the API to reject the request.
  • Invalid or incomplete address fields if address is provided, since all fields except complement must be filled.
  • API authentication errors if the Woovi API credentials are not set or invalid.
  • Error message 'Unsupported resource/operation' indicates that the selected resource or operation is not implemented or incorrectly specified.

Links

  • Woovi API Documentation - Official API documentation for Woovi, useful for understanding the customer creation endpoint and required fields.

Discussion