Skip to main content

When working with Zapier, there may be scenarios where each Zap run requires a unique identifier, such as a UUID (Universally Unique Identifier). This can be crucial for tasks like assigning unique IDs to database records, tracking events, or ensuring data consistency across systems.

 

Fortunately, Zapier offers several methods to generate UUIDs directly within your Zaps. Below, I'll walk you through three effective ways to achieve this:

 

1. Using ChatGPT to Generate a UUID

 

You can leverage the ChatGPT integration in Zapier to generate a new UUID every time the Zap runs. This method is straightforward and doesn't require coding.

 

How to Set It Up:

  1. Add a "ChatGPT" action step in your Zap.
  2. Select the "Conversation" event.

Use the following prompt in the "Prompt" field:

 

Example Prompt:

Generate a new UUID (a 128-bit label used for information in computer systems.)



A Version 4 UUID is a universally unique identifier that is generated using random numbers.



It has the 8-4-4-4-12 format, i.e., xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, where every 'x' represents 4 bits.



Only reply with the ID and no additional text.

 

This method is ideal if you’re already using ChatGPT in your Zap or want a no-code solution.

 

2. Using Code by Zapier to Generate a UUID

 

The "Code by Zapier" action allows you to run custom Python or JavaScript code within your Zap. This is a flexible option for generating UUIDs.

 

How to Set It Up:

  1. Add a "Code by Zapier" action step.
  2. Choose "Run Python" or “Run Javascript” as the action event.
  3. Paste the code snippet below into the code editor.
  4. Map the output (id) to the subsequent steps in your Zap.

 

Example Python Code:

import uuid



# Generate a new Version 4 UUID

new_uuid = str(uuid.uuid4())



# Prepare the output with the generated UUID

output = {'id': new_uuid}


If you prefer JavaScript, here’s an equivalent snippet:

 


// Function to generate a random UUID (version 4)
function generateUUID() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/xxy]/g, function(c) {
const r = Math.random() * 16 | 0; // Generate a random number between 0 and 15
const v = c === 'x' ? r : (r & 0x3 | 0x8); // Set the appropriate bits for version 4
return v.toString(16); // Convert to hexadecimal
});
}

// Generate the UUID
const uuid = generateUUID();

// Prepare the output with the generated UUID
output = { uuid: uuid };

 

This method is suitable for users who are comfortable with coding and want more control over the process.

 

3. Using Webhooks by Zapier to Call the Free UUID Generator API

 

The "Webhooks by Zapier" action is another versatile tool that allows you to make HTTP requests to any API endpoint. You can use it to call a free UUID Generator API and get a new UUID every time the Zap runs.

 

How to Set It Up:

  1. Add a "Webhooks by Zapier" action step in your Zap.
  2. Select the "GET" request method.
  3. In the "URL" field, enter the following endpoint: https://www.uuidgenerator.net/api/version4
  4. Add the HTTP header: Accept: application/json
  5. This request will return a JSON object containing a new UUID each time it’s called. You can then parse this response to use the UUID in subsequent steps.

 

This method is perfect for users who are comfortable with using APIs and want a robust, external solution for UUID generation.

 

Conclusion

These are three effective methods to generate UUIDs within Zapier. Depending on your preference for no-code, low-code, or API-based solutions, you can choose the one that best suits your needs.

Feel free to customize these steps according to your specific requirements, and I hope you find this guide helpful!