Get or create a storefront link for a storefront you have access to.
Method: POST
Body (JSON):
- “storefront_id”
- id for the storefront you wish to create a link for
- can be retrieved using the storefronts API
- “source_id”
- An ID that identifies where the created link will be used
- Examples: “instagram”, “tiktok”, “blog”, etc.
- If omitted, “default” will be used as the source ID
- Allowed characters: [a-zA-Z0-9-_@./ ]
- “source_sub_id”:
- An ID to further identify the link underneath the source_id namespace
- Examples: “user1”, ‘https://www.source_id/@user”, “blogpost_23”
- If omitted, “” will be used as sub_source_id, can not be filtered on
- Allowed characters: [a-zA-Z0-9-_@./ ]
- “source_name”
- Display name for the source within Levanta
- Can be omitted
- “associates_tag”
- Value to override associates tag with
- If omitted default account associates tag is used
- if no default account associates tag is used, set to “maas”
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:
- 400: Bad Request
- Parameters incorrectly formatted or missing permissions to create a storefront link for the given storefront_id
- 401: Unauthorized
- Invalid or omitted API Key
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);