Get Product Variants

Obtain the list of all your product variants

The endpoint retrieves basic information about all product variants assigned to a partner.

get
Authorizations
Query parameters
pagenumberOptional

Number of the page to retrieve. Default is 1

limitnumberOptional

Number of product variants to retrieve per page. Default is 50, maximum is 500

productIdstringOptional
ean13stringOptional
Responses
200

Successfully retrieved the product variants, ordered by EAN13 descending, and paginated

application/json
get
GET /v1/product-variants HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "totalItems": 1,
  "data": {
    "ean13": "text",
    "name": "text",
    "stockLevelQuantity": 1,
    "productId": "text",
    "color": "text",
    "size": "text"
  }
}

Last updated