Productsup

Authentication

How to authenticate with the Productsup Stream API using Personal Access Tokens.

Your Productsup main contact can support with getting Stream API Access. Additionally, they can also be contacted for creating new / additional tokens and revoking tokens.

Example authentication request (actually lists streams):

curl --location --request GET 'https://stream-api.productsup.com/streams/124773' \
--header 'Authorization: Bearer <token>'

Stream API authentication layer is set up based on the concept of PAT. The Productsup platform links PATs to user accounts. In the future, they will let you finely control user permissions. However, there are currently no specific authorizations other than full access.

Each request you make to the Stream API needs authentication. To receive authentication, you must send an authorization header with a bearer token. The following is an example of the header format:

Authorization: Bearer <token>

How is this guide?