POST
/
links
/
storefronts
/
{storefront_id}
curl --request POST \
  --url https://app.levanta.io/api/creator/v1/links/storefronts/{storefront_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "source_id": "<string>",
  "source_sub_id": "<string>",
  "source_name": ""
}'
{
  "id": "<string>",
  "sourceId": "<string>",
  "sourceSubId": "<string>",
  "sourceName": "<string>",
  "url": "<string>",
  "mobileOptimizedUrl": "<string>",
  "active": true,
  "type": "product",
  "marketplace": "amazon.com",
  "levantaProductCount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

storefront_id
string
required

UUID

Body

application/json

The storefront link to create

The body is of type object.

Response

200
application/json

Success

The response is of type object.