List shop assortment
GET
/partners/{id}/shops/{shop_id}/assortment
const url = 'https://example.com/partners/example/shops/example/assortment';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/partners/example/shops/example/assortmentParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
shop_id
required
string
Responses
Section titled “ Responses ” Media type application/json
Array<object>
object
id
required
string
price
Example
[ { "price": "NaN" }]