All endpoints in the Product API require authentication via an access token. This token must be included in the headers of every request.
How to get your X-Videowise-Access-Token
How to Authenticate
- Obtain your access token from your Videowise account settings. Go to Settings -> Stores -> Click View license key
- Include the token in the
X-Videowise-Access-Token header of your request.
siteId and siteType are deprecated and no longer required. They were
previously obtained from Settings → Stores → Edit and were passed in the
request body. Existing integrations that still send these fields will continue
to work.
Example:
X-Videowise-Access-Token: <your_access_token>
Error Responses
If the token is missing or invalid, the API will return a 401 Unauthorized error:
{
"message": "Missing X-Videowise-Access-Token header"
}