List feedback widgets
Authorization
BearerAuth Use an API key from the Produktly dashboard → Settings → API keys.
In: header
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/feedback-widgets"{ "data": [ { "id": 0, "name": "string", "active": true, "createdAt": "2019-08-24T14:15:22Z" } ], "pagination": { "total": 0, "limit": 0, "offset": 0 }}Update a checklist PATCH
Only the fields you send are changed. items and targeting replace their stored values wholesale — fetch the checklist first and send the full array back, preserving item ids (completion state is keyed on them). settings are merged. Live checklists can be edited, but an update that would leave one unpublishable (no items or no targeting) returns 400; set active: false first to take it down.
Create a feedback widget POST
Creates the widget as a draft. Pass active: true to publish immediately — the widget must have at least one option and targeting set, otherwise it stays a draft and the response note explains why. Supply options directly or use optionsPreset for a built-in set. The response includes a dashboardUrl for reviewing the widget in the builder.