PRODUCT_ID needed for uploading binary images.
When to Use This Endpoint
Before uploading an image to scan, you need to know which product to associate it with. This endpoint returns all products you have access to, allowing you to:- Find the correct product ID for your image
- Verify you have access to the intended product
- Discover available products in your organization
Request
Endpoint| Header | Value |
|---|---|
Authorization | Bearer <access_token> |
Example Request
Response
| Field | Description |
|---|---|
id | Full product path (e.g., products/prod_abc123) |
name | Human-readable product name |
description | Product description |
createTime | When the product was created (ISO 8601 format) |
author | User or service that created the product |
Extracting the Product ID
Theid field contains the full path (e.g., products/prod_abc123). When uploading images, use only the ID portion:
| Full Path | Product ID to Use |
|---|---|
products/prod_abc123 | prod_abc123 |
products/prod_def456 | prod_def456 |
Alternative: Get Product ID from Dashboard URL
For testing or quick access, you can find the Product ID directly in the Binarly Dashboard URL.- Open the product page in the dashboard.
- Look at the browser URL:
https://dashboard-<ID>.binarly.cloud/products/01KFNEGZEAWM1F3JBYKXDXGPDM/images/... - The string after
/products/is your Product ID (e.g.,01KFNEGZEAWM1F3JBYKXDXGPDM).