Tutorial

SKU Setup Tutorial

Step-by-step guide to setting up your product SKU mappings for seamless order processing.

1
2
3
4
Step 1: Get Your Product Catalog
Browse the available platform products to find the ones you want to map to your SKUs.

Use the Products API to retrieve the catalog with SKUs you can map to:

curl -X GET "https://gateway.regentherapy.com/api/v1/products?active=true&limit=50" \
  -H "X-API-Key: your_api_key"

Example response:

{
  "success": true,
  "data": {
    "data": [
      {
        "id": "prod_abc123",
        "name": "Premium CBD Oil 500mg Full Spectrum",
        "sku": "CBD-OIL-500-FS",
        "basePrice": 39.99,
        "isActive": true,
        "inventory": { "available": 250 }
      },
      {
        "id": "prod_def456",
        "name": "Premium CBD Oil 1000mg Full Spectrum",
        "sku": "CBD-OIL-1000-FS",
        "basePrice": 69.99,
        "isActive": true,
        "inventory": { "available": 180 }
      },
      {
        "id": "prod_ghi789",
        "name": "CBD Gummies 30 Count Mixed Berry",
        "sku": "CBD-GUMMY-30CT",
        "basePrice": 34.99,
        "isActive": true,
        "inventory": { "available": 320 }
      }
    ],
    "pagination": { "page": 1, "limit": 50, "total": 45, "pages": 1 }
  }
}

Related Resources