Get or create a storefront link for a storefront you have access to.

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 storefront_id = "abc_123";
const ENDPOINT = `https://app.levanta.io/api/creator/v1/links/storefronts/${storefront_id}`;

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

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