Works with any platform
Send a POST request to your unique webhook URL:
Send a JSON payload with the following fields:
{
"product_name": "Gucci Marmont Bag", // required
"brand": "Gucci", // required
"model": "Medium", // optional
"order_number": "#12345", // optional
"customer_email": "john@example.com", // optional
"customer_name": "John Doe", // optional
"main_image": "https://..." // optional
}curl -X POST \
https://getissued.com/api/webhook/generic/sk_live_... \
-H "Content-Type: application/json" \
-d '{
"product_name": "Vintage Rolex Datejust",
"brand": "Rolex",
"model": "Datejust 36mm",
"order_number": "#5678",
"customer_email": "buyer@example.com"
}'{
"success": true,
"data": {
"certificate_id": "uuid-here",
"unique_code": "A8B3C4D5",
"verification_url": "https://getissued.com/verify/A8B3C4D5"
}
}This generic webhook works with any platform that can send HTTP POST requests: