Produkte
Produkte auflisten
Alle Produkte Ihrer Organisation abrufen
GET
/
products
Copy
curl --request GET \
--url https://dashboard.scango.ch/api/v1/products \
--header 'Authorization: Bearer <token>'
Copy
{
"data": [
{
"name": "<string>",
"price": 123,
"supplier": "<string>",
"taxCategory": "8.1",
"category": "<string>",
"declarations": "<string>",
"barcode": "<string>",
"depositProduct": 123,
"description": "<string>",
"salePrice": 123,
"salePercentage": 123,
"salePriceDateFrom": "2023-12-25",
"salePriceDateTo": "2023-12-25",
"costPrice": 123,
"margin": 123,
"showOnHomescreen": true,
"showOnScreen": true,
"ageRestriction": true,
"showOnScale": true,
"saleStop": true,
"index": 123
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
List of products
The response is of type object
.
War diese Seite hilfreich?
Copy
curl --request GET \
--url https://dashboard.scango.ch/api/v1/products \
--header 'Authorization: Bearer <token>'
Copy
{
"data": [
{
"name": "<string>",
"price": 123,
"supplier": "<string>",
"taxCategory": "8.1",
"category": "<string>",
"declarations": "<string>",
"barcode": "<string>",
"depositProduct": 123,
"description": "<string>",
"salePrice": 123,
"salePercentage": 123,
"salePriceDateFrom": "2023-12-25",
"salePriceDateTo": "2023-12-25",
"costPrice": 123,
"margin": 123,
"showOnHomescreen": true,
"showOnScreen": true,
"ageRestriction": true,
"showOnScale": true,
"saleStop": true,
"index": 123
}
]
}
Assistent
Responses are generated using AI and may contain mistakes.