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

Authorizations

Authorization
string
header
required

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

Body

application/json

The product link to create

The body is of type object.

Response

200
application/json

Success

The response is of type object.