Get Products
Obtain the list of all your producs
The endpoint retrieves basic information about all Products assigned to a partner.
get
Authorizations
Query parameters
pagenumberOptional
Number of the page to retrieve. Default is 1
limitnumberOptional
Number of products to retrieve per page. Default is 50, maximum is 500
Responses
200
Successfully retrieved the products, ordered by name and paginated
application/json
404
Products not found
application/json
500
Internal server error
application/json
get
GET /v1/products HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"totalItems": 1,
"data": {
"productId": "text",
"name": "text",
"variants": 1,
"previewImageUrls": [
"text"
]
}
}
Last updated