Discussions

Ask a Question

How to retrieve features attachments ?

I want to improve integration with my issue management system, but I haven't found a way to retrieve features attachments . Is It possible?

How can I update the features associated with a note through the API?

I am patching the following payload and would like to see the association in the app: <br> {'data': {'tags': ['...', '...', '...', '...'], 'features': [{'id': '...', 'type': 'feature', 'importance': 2}], 'state': 'processed'}}

Retrieve tags for features/components/products

Is there an endpoint that will return the tag added to Features, Components, or Products? Or what's the best way to achieve this?

Retrieve user impact score, drivers and/or Formula fields

hi is it possible to retrieve the user impact score, drivers, and or the formula fields via API.

Why it is not possible to delete a Note?

I just want to know the reason, because within our integration that's a main feature and since there is no endpoint for that we are trying different workarounds like updating the content of a note with a disclaimer (which by the way it's not possible when a note was already linked to a feature, that sucks because it's possible in the web app) or simply add a tag to mark it as deleted. In any case it's a bad experience for the user. So, why?

Webhook Payloads

Could you please provide an example of the payloads associated with supported webhook events? <https://api.productboard.com/webhooks>

Is there a webhook event for new health updates on a feature?

I'm looking to use a webhook subscription to receive notifications when a new health update has been posted on a feature, as well as the content of the health update in the notification. Is that possible, and if so, what is the event type I should use?

Feature <> Objective associations?

How can you tell which objectives are assigned to a feature and vice-versa? Is there something similar to feature-release-assignment that I am overlooking? If no, is this planned? Thank you!

Webhook Events

Which webhook events are trigerred when a features' component is updated. I was testing on localhost few days ago and both feature.updated and feature.created were being trigerred but now on my cloud server I can only see feature.updated being trigerred.

pageCursor on Notes endpoint: Last page returns pageCursor of first page again.

I am consuming <https://api.productboard.com/notes> and I specify the featureId for which I want all notes. When there are more than 100 results, the results get paginated and the documentation tells me to _This API is paginated, only the first 100 items are returned by default. The client should then recursively call /notes/ by using returned pageCursor_ That's fine to do, however, the last page seems to return the pageCursor of the first page again! So if I call it recursively, I am creating an endless loop. Is this by design and therefore I need to store the pageCursor of the first page to make sure I stop calling it when I reach the last page?