get https://api.productboard.com/v2/entities/
Retrieves all configured fields and values for the specified Entities. Use this endpoint to load complete data for a single entity.
You can limit the fields returned using the fields
query parameter.
Code examples
Replace <entity-id>
with the ID of the Entities.
Replace <your-token>
with a valid API token.
Fetch all fields of a specific feature:
curl -X GET "https://api.productboard.com/v2/entities/<entity-id>" \
-H "Authorization: Bearer <your-token>"
Fetch only the name and status of a feature:
curl -X GET "https://api.productboard.com/v2/entities/<entity-id>?fields=name,status" \
-H "Authorization: Bearer <your-token>"