Back to Integrations

Generic Webhook

Works with any platform

Webhook URL

Send a POST request to your unique webhook URL:

POST https://getissued.com/api/webhook/generic/sk_live_your_api_key

Request Body

Send a JSON payload with the following fields:

application/json
{
  "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
}

Example cURL

Terminal
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"
  }'

Response

201 Created
{
  "success": true,
  "data": {
    "certificate_id": "uuid-here",
    "unique_code": "A8B3C4D5",
    "verification_url": "https://getissued.com/verify/A8B3C4D5"
  }
}

Compatible Platforms

This generic webhook works with any platform that can send HTTP POST requests:

Lightspeed
Squarespace
Etsy
BigCommerce
Magento
Zapier
Make.com
n8n
Custom App