Skip to content

Instantly share code, notes, and snippets.

View picsoung's full-sized avatar
🧀
🇫🇷 🐸 Hacking around 🤓👨‍💻

Nicolas Grenié picsoung

🧀
🇫🇷 🐸 Hacking around 🤓👨‍💻
View GitHub Profile
@simonhamp
simonhamp / WebhookController.php
Last active August 13, 2024 15:52
Handling Typeform Webhooks in Laravel
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class WebhookController
{
public function create(Request $request)
{

How to rename a setupId in Pizzly.

Pizzly uses uuidv4 to generate pseudo-random setupId, such as a3ef22ba-8916-424f-b613-9e8608026094. In some cases, you might be interested in renaming the setupId to something more meaningful. Here's how to do it.

Server side

Assuming you can't run SQL queries on your production database, to rename a setupId on your Pizzly instance (e.g. on Heroku), you'll have to create a new endpoint on Pizzly's API and request that endpoint each time you want to rename a setupId.

Here's how to do it: