Skip to main content
PATCH
/
api
/
pixels
/
{pixelId}
curl -X PATCH https://api.linquid.io/api/pixels/pixel_abc123 \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "enabled": false,
    "firesLimit": 10000
  }'
pixelId
string
required
Pixel identifier

Request Body

All fields are optional.
name
string
New name
description
string
New description (null to clear)
eventName
string
New event label (null to clear)
captureParams
array
Replace capture parameter set
conversionTracking
boolean
Toggle conversion tracking
enabled
boolean
Enable or disable the pixel
expiresAt
string
ISO datetime or null to clear expiry
firesLimit
number
Positive integer limit or null

Access

  • Permission: pixels:update
curl -X PATCH https://api.linquid.io/api/pixels/pixel_abc123 \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "enabled": false,
    "firesLimit": 10000
  }'

Common Errors

  • 404: pixel not found in workspace