For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get a specific product

Method : GET

https://os.vucustom.com/api/v1/products?id=&sku

URL Parameters

Field Name
Description

id

Returns only one product specified by the system generated id

sku

Returns only products specified by sku

Example Request
https://os.vucustom.com/api/v1/products?id=&sku=

200 Successful response example

{
	"product": {
		"id": 14,
		"product_categories": [
			"SKATE"
		],
		"name": "2s3test",
		"b2b": true,
		"active": true,
		"customize_only": false,
		"code": null,
		"product_variants": [
			{
				"id": 6,
				"sku": "1063458",
				"name": "test",
				"upc": "UPC123",
				"code": null
			}
		]
	}
}

401 Unauthorized

The client doesn’t have correct authentication credentials.

403 Forbidden

The server is refusing to respond. This is typically caused by incorrect access.

404 Not Found

The requested resource was not found but could be available again in the future.

422 Unprocessable Entity

5xx Errors

An internal error occurred in VU Admin.

Last updated