Skip to main content
POST
/
api
/
v1
/
products
/
sync
Sync Stripe Products
curl --request POST \
  --url https://api.sequenzy.com/api/v1/products/sync \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "jobId": "12345"
}
Queues a background sync of the Stripe product catalog into the products list. Requires an active Stripe integration.

Request

curl -X POST "https://api.sequenzy.com/api/v1/products/sync" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "jobId": "12345"
}