Delivery methods
curl -X POST 'https://api.webit.live/api/v1/async/ecommerce' \
--header 'Authorization: Basic <credential string>' \
--header 'Content-Type: application/json' \
--data-raw '{
"vendor": "walmart",
"url": "https://www.walmart.com/ip/Simple-Mobile-Apple...."
"country": "US",
"locale": "en"
"storage_type": "s3",
"storage_url": "s3://sample-bucket",
"callback_url": "https://my.callback/path"
}'import requests
url = 'https://api.webit.live/api/v1/async/ecommerce'
headers = {
'Authorization': 'Basic <credential string>',
'Content-Type': 'application/json'
}
data = {
"vendor": "walmart",
"url": "https://www.walmart.com/ip/Simple-Mobile-Apple....",
"country": "US",
"locale": "en",
"storage_type": "s3",
"storage_url": "s3://sample-bucket",
"callback_url": "https://my.callback/path"
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())Request Options
Parameter
Required
Description
Selecting a delivery method
Response
Initial Response
Checking Task Status
State
Description
Task Completion
Handling Cloud Delivery Failure
Response codes
Status
Description
Last updated












