List storefronts for a given brand.
Method: GET (paginated)
Parameters:
Response:
{
"storefronts": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", // the id of the storefront. Can be used to retrieve storefront links
"name": "string",
"levantaProductCount": 0, // the number of activated levanta products on this storefront
"marketplace": "amazon.com"
}
],
"cursor": "string"
}
Errors:
Example:
const API_KEY = "LEVANTA_API_KEY";
const ENDPOINT = "<https://app.levanta.io/api/creator/v1/brands/storefronts>";
let cursor;
const storefronts = [];
// Set up query parameters
const parameters = new URLSearchParams();
parameters.set("limit", 5); // Maximum of 5 brands per response
parameters.set("brand_id", "abc_123")
// Paginate through brands, stop when a value of null is returned for "cursor"
while (cursor !== null) {
const response = await fetch(`${ENDPOINT}?${parameters.toString()}`, {
method: "GET",
headers: {
Authorization: `Bearer ${API_KEY}`
}
});
const json = await response.json();
// Store brands returned
brands.push(...json.storefronts);
cursor = json.cursor;
if (cursor) parameters.set("cursor", cursor);
}
console.log(brands);