Get or create the default storefront link for a brand you have access to. The default storefront for a brand is the “home” page for the brand, if it exists.

Method: POST

Body (JSON):

Response:

{
  "id": "string",
  "sourceId": "string",
  "sourceSubId": "string",
  "sourceName": "string",
  "url": "string",
  "active": true,
  "type": "product",
  "marketplace": "amazon.com",
  "levantaProductCount": 0 // how many active Levanta products on this storefront
}

Errors:

Example:

const API_KEY = "LEVANTA_API_KEY";
const ENDPOINT = `https://app.levanta.io/api/creator/v1/links/storefronts`;

const res = await fetch(ENDPOINT, {
	method: "POST",
	headers: {
		Authorization: `Bearer ${API_KEY}`,
        "Content-Type": "application/json"
	},
	body: JSON.stringify({
				brand_id: "abc_123",
        source_id: "instagram",
				source_sub_id: "post_22",
				source_name: "Instagram Affiliate Post #22"
    })
});

const link = await res.json();
console.log(link);