How to mark a product as a launch product

How to mark a product as a launch product

Use this guide when you need to flag a product as a launch — typically used to highlight new products within the event platform.


Request — mark as launch

Bash
curl -X POST "https://your-event-domain.com/api/v2/product/set" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "event_id=7" \
  -F "id=452" \
  -F "launch=true"

Request — remove launch flag

Bash
curl -X POST "https://your-event-domain.com/api/v2/product/set" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "event_id=7" \
  -F "id=452" \
  -F "launch=false"

Notes

  • The launch flag can also be set at creation time by including it in the create request