Create the destination
In Dashboard → Webhooks, enter an HTTPS URL and select events. The secret is shown once.
Documentatie van de leverancier
Sluit uw ERP, e-commerce platform, POS of zakelijke software aan op SellViaApp. Verzend categorieën, producten en prijzen, dan ophalen bevestigde winkel bestellingen als JSON.
https://api.sellviaapp.com/X-API-Key + BearerSnel starten
Get the X-API-Key and generate the Bearer in Dashboard → API. Enter them below, then use “Test · Generate” on an endpoint to obtain the response and cURL, PHP 8 or JavaScript code.
Credentials remain in memory for this page only. For a customer-related operation, add customer_id.
Real time
A webhook alerts your ERP, CRM, automation or software whenever a product, customer, cart, order, document or important setting changes. Use the API to retrieve the full authoritative object when needed.
In Dashboard → Webhooks, enter an HTTPS URL and select events. The secret is shown once.
Compute HMAC-SHA256 over timestamp.delivery_id.raw_body and compare it with X-SellViaApp-Signature.
Return HTTP 2xx, deduplicate with X-SellViaApp-Event-Id, then process in the background.
payload = timestamp + "." + delivery_id + "." + raw_body
expected = "v1=" + HMAC_SHA256(payload, signing_secret)
Eindpunten
Maak en beheer klantaccounts voor elke winkel.
/customer/add
API-sleutel
Maak een klant en genereren van de leverancier login.
nom
tekenreeks
Vereist
Achternaam van de klant.
prenom
tekenreeks
Vereist
Voornaam van de klant.
email
e-mail
Vereist
E-mail uniek binnen de leverancier.
denomination
tekenreeks
Optional
Bedrijfsnaam, optioneel.
password
tekenreeks
Vereist
Minstens acht karakters.
address
tekenreeks
Optional
Postal address.
zipcode
tekenreeks
Optional
Postal code.
city
tekenreeks
Optional
City.
country
tekenreeks
Optional
Country.
phone
tekenreeks
Optional
Phone number.
cellphone
tekenreeks
Optional
Mobile phone number.
vat_number
tekenreeks
Optional
VAT number.
language
tekenreeks
Optional
Two-letter ISO language code.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/customer/list
Sleutel + drager
Lijst of filter geautoriseerde klantinformatie.
page
geheel getal
Optional
Paginanummer, vanaf 1.
per_page
geheel getal
Optional
Number of results per page.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/customer/me
Sleutel + drager
Haal het ingelogde klantenprofiel op.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/customer/update
Sleutel + drager
Update profiel, taal, type, e-mail of wachtwoord.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
first_name
tekenreeks
Optional
First name.
last_name
tekenreeks
Optional
Last name.
company
tekenreeks
Optional
Company name.
email
e-mail
Optional
New email address, unique within the shop.
address
tekenreeks
Optional
Postal address.
zipcode
tekenreeks
Optional
Postal code.
city
tekenreeks
Optional
City.
country
tekenreeks
Optional
Country.
phone
tekenreeks
Optional
Phone number.
cellphone
tekenreeks
Optional
Mobile phone number.
vat_number
tekenreeks
Optional
VAT number.
language
tekenreeks
Optional
Two-letter ISO language code.
account_type
enum
Optional
company | individual
notifications_enabled
booleaans
Optional
Allow mobile notifications.
password
tekenreeks
Optional
New password, at least eight characters.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/customer/deleteaccount
Sleutel + drager
Deactiveer het klantenaccount in de actieve winkel.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Eindpunten
Categorieën, producten, afbeeldingen, prijzen, voorraad, promoties en favorieten.
/fam1/list
Sleutel + drager
Lijst van primaire categorieën.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/fam1/add
Sleutel + drager
Maak een primaire categorie.
name
tekenreeks
Vereist
Visible category name.
external_key
tekenreeks
Optional
Stable identifier from your software.
sort_order
geheel getal
Optional
Display order, starting at 1.
image_url
url
Optional
HTTPS image URL.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/fam1/update
Sleutel + drager
Update een primaire categorie.
id
geheel getal
Vereist
Identifier of the category to update.
name
tekenreeks
Vereist
Visible category name.
external_key
tekenreeks
Optional
Stable identifier from your software.
sort_order
geheel getal
Optional
Display order, starting at 1.
image_url
url
Optional
HTTPS image URL.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/fam1/delete
Sleutel + drager
Verberg een primaire categorie.
id
geheel getal
Vereist
Identifier of the category to hide.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/fam2/list
Sleutel + drager
Lijstsubcategorieën.
category_id
geheel getal
Optional
Limit results to one primary category.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/fam2/add
Sleutel + drager
Maak een subcategorie aan.
category_id
geheel getal
Vereist
Parent primary category identifier.
name
tekenreeks
Vereist
Visible category name.
external_key
tekenreeks
Optional
Stable identifier from your software.
sort_order
geheel getal
Optional
Display order, starting at 1.
image_url
url
Optional
HTTPS image URL.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/fam2/update
Sleutel + drager
Een subcategorie bijwerken.
id
geheel getal
Vereist
Identifier of the subcategory to update.
name
tekenreeks
Vereist
Visible category name.
external_key
tekenreeks
Optional
Stable identifier from your software.
sort_order
geheel getal
Optional
Display order, starting at 1.
image_url
url
Optional
HTTPS image URL.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/fam2/delete
Sleutel + drager
Verberg een subcategorie.
id
geheel getal
Vereist
Identifier of the subcategory to hide.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/product/list
Sleutel + drager
Lijst en zoek producten met paginatie.
page
geheel getal
Optional
Paginanummer, vanaf 1.
per_page
geheel getal
Optional
Number of results per page.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
search
tekenreeks
Optional
Zoeken op code, naam of beschrijving.
category_id
geheel getal
Optional
Filter van primaire categorie.
subcategory_id
geheel getal
Optional
Subcategorie filter.
price_group
tekenreeks
Optional
Customer price group.
favorites
booleaans
Optional
Return favourites only.
promotions
booleaans
Optional
Return active promotions only.
new
booleaans
Optional
Return new products only.
progressive
booleaans
Optional
Fast pagination without calculating the total count.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/product/image
Ondertekende URL
Serveer een gesigneerde, cachebare productafbeelding.
supplier
tekenreeks
Vereist
Public shop suffix.
id
geheel getal
Vereist
Product identifier.
slot
geheel getal
Optional
Image slot from 1 to 5.
signature
tekenreeks
Vereist
Signed-link signature returned by product/list.
variant
enum
Optional
small | thumb | large
200 The body directly contains the binary image and the Content-Type header indicates its format.
{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/product/add
Sleutel + drager
Maak een product aan.
code
tekenreeks
Vereist
Code uniek binnen de winkel.
name
tekenreeks
Vereist
Naam weergegeven in de app.
description
tekenreeks
Optional
Gedetailleerde productbeschrijving.
base_price
decimaal
Optional
Verkoopprijs exclusief belasting volgens uw configuratie.
vat_rate
decimaal
Optional
BTW-tarief, bijvoorbeeld 21.
category_id
geheel getal
Optional
Primary category identifier.
subcategory_id
geheel getal
Optional
Subcategory identifier.
external_key
tekenreeks
Optional
Stabiele identificatie van uw ERP.
unit
tekenreeks
Optional
Unit code, for example pc.
unit_name
tekenreeks
Optional
Human-readable unit name.
image_url
url
Optional
HTTPS URL van de hoofdafbeelding.
is_new
booleaans
Optional
Highlight the product as new.
active
booleaans
Optional
Controleert product zichtbaarheid.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/product/update
Sleutel + drager
Update een product.
id
geheel getal
Vereist
Identifier of the product to update.
code
tekenreeks
Vereist
Code uniek binnen de winkel.
name
tekenreeks
Vereist
Naam weergegeven in de app.
description
tekenreeks
Optional
Gedetailleerde productbeschrijving.
base_price
decimaal
Optional
Verkoopprijs exclusief belasting volgens uw configuratie.
vat_rate
decimaal
Optional
BTW-tarief, bijvoorbeeld 21.
category_id
geheel getal
Optional
Primary category identifier.
subcategory_id
geheel getal
Optional
Subcategory identifier.
external_key
tekenreeks
Optional
Stabiele identificatie van uw ERP.
unit
tekenreeks
Optional
Unit code, for example pc.
unit_name
tekenreeks
Optional
Human-readable unit name.
image_url
url
Optional
HTTPS URL van de hoofdafbeelding.
is_new
booleaans
Optional
Highlight the product as new.
active
booleaans
Optional
Controleert product zichtbaarheid.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/product/delete
Sleutel + drager
Verberg een product.
id
geheel getal
Vereist
Identifier of the product to hide.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/product/favoris
Sleutel + drager
Voeg een product toe of verwijder deze uit favorieten.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
product_id
geheel getal
Vereist
Product identifier.
favorite
booleaans
Optional
true to add, false to remove; toggles the state when omitted.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/price/list
Sleutel + drager
List prices applicable to the customer group, falling back to the product sales price.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
product_id
geheel getal
Optional
Limit results to one product.
price_group
tekenreeks
Optional
Price group, defaults to 01.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/mark/list
Sleutel + drager
Lijst beschikbare merken.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/size/list
Sleutel + drager
Lijst beschikbare maten.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/libweb/list
Sleutel + drager
List web reference labels, falling back to catalogue labels.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Eindpunten
Beheer de kar en bevestig een order atomair.
/order/list
Sleutel + drager
List every confirmed shop order with pagination.
page
geheel getal
Optional
Paginanummer, vanaf 1.
per_page
geheel getal
Optional
Number of results per page.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
guid
tekenreeks
Optional
Filter a confirmed order by GUID.
from_date
datum
Optional
Filter from this date using YYYY-MM-DD.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/order/delete
Sleutel + drager
Wis en verwijder de huidige kar.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/order/total
Sleutel + drager
Bereken kar subtotaal, BTW en totaal.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/order/shipping/quote
Sleutel + drager
Calculate shipping fees from the cart, fulfilment mode and country.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
delivery_mode
enum
Vereist
pickup | delivery
delivery_country
tekenreeks
Optional
Two-letter ISO code or delivery-country name.
{
"success": true,
"message": "Shipping fee calculated",
"data": {
"delivery_mode": "delivery",
"country_code": "BE",
"shipping_mode": "country_rules",
"shipping_fee": 6.9,
"free_shipping": false,
"free_shipping_from": 75,
"amount_until_free": 25,
"product_total": 50,
"total": 56.9,
"rule": "country:BE",
"currency": "EUR",
"currency_symbol": "€"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/order/count/line
Sleutel + drager
Tel de lijnen in de kar.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/order/sendtomegawin
Sleutel + drager
Bevestig de volgorde, vervullingmodus en adres.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
order_guid
uuid
Optional
De cipier van de kar om te bevestigen.
delivery_mode
enum
Vereist
pickup | delivery
delivery_address
tekenreeks
Optional
Vereist voor levering.
delivery_country
tekenreeks
Optional
Two-letter ISO code or country name used to calculate the rate.
delivery_date
datum
Optional
JJJJ-MM-DD
delivery_comment
tekenreeks
Optional
Gebruiksaanwijzing.
language
tekenreeks
Optional
Transactie e-mail taal.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/orderline/add
Sleutel + drager
Voeg een product en hoeveelheid toe aan de winkelwagen.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
product_id
geheel getal
Vereist
Identifier of the product to add.
quantity
decimaal
Vereist
Quantity strictly greater than zero.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/orderline/list
Sleutel + drager
Ophalen van huidige karlijnen.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/orderline/update
Sleutel + drager
Update een regelhoeveelheid.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
item_id
geheel getal
Vereist
Cart line identifier.
quantity
decimaal
Vereist
Quantity; zero removes the line.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/orderline/delete
Sleutel + drager
Verwijder een lijn uit de kar.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
item_id
geheel getal
Vereist
Identifier of the line to remove.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Eindpunten
Choose pay on delivery or open a secure Stripe payment, then retrieve its server-verified status.
/payment/config
Sleutel + drager
Retrieve the enabled Stripe payment methods and the Stripe account provider selected for the app.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/payment/checkout/create
Sleutel + drager
Create or resume a Stripe Checkout page for an unpaid order or booking owned by the signed-in customer. A still-changeable pay-on-delivery choice is safely replaced.
purpose_type
enum
Vereist
order | booking
purpose_id
geheel getal
Vereist
Identifier of the confirmed order or customer-confirmed booking.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/payment/pay-later
Sleutel + drager
Record pay on delivery or replace a still-open Stripe payment after its session is securely checked and expired.
purpose_type
enum
Vereist
order | booking
purpose_id
geheel getal
Vereist
Authorised order or booking identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/payment/status
Sleutel + drager
Retrieve a payment status; only the signed Stripe webhook can confirm it as paid.
reference
tekenreeks
Optional
SellViaApp payment reference. Otherwise provide purpose_type and purpose_id.
purpose_type
enum
Optional
order | booking
purpose_id
geheel getal
Optional
Paid object identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Eindpunten
Facturen, schattingen, orders en hun regels.
/document/add
Sleutel + drager
Maak een document aan dat gekoppeld is aan de klant.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
doc_type
tekenreeks
Optional
invoice | estimate | purchase_order
doc_number
tekenreeks
Optional
Document number; generated automatically when omitted on creation.
doc_date
datum
Optional
JJJJ-MM-DD
due_date
datum
Optional
JJJJ-MM-DD
payment_method
tekenreeks
Optional
Betalingswijze.
remark
tekenreeks
Optional
Een opmerking in vrije vorm.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/document/list
Sleutel + drager
Lijst of filterdocumenten.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
doc_type
tekenreeks
Optional
Filter by document type.
guid
uuid
Optional
Filter by document GUID.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/document/update
Sleutel + drager
Een document bijwerken dat door GUID is geïdentificeerd.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
uuid
Vereist
GUID of the document to update.
doc_type
tekenreeks
Optional
invoice | estimate | purchase_order
doc_number
tekenreeks
Optional
Document number; generated automatically when omitted on creation.
doc_date
datum
Optional
JJJJ-MM-DD
due_date
datum
Optional
JJJJ-MM-DD
payment_method
tekenreeks
Optional
Betalingswijze.
remark
tekenreeks
Optional
Een opmerking in vrije vorm.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/document/delete
Sleutel + drager
Een document en de regels verwijderen.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
uuid
Vereist
GUID of the document to delete.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/documentline/add
Sleutel + drager
Voeg een regel toe en bereken het document opnieuw.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
uuid
Vereist
Documenten.
text
tekenreeks
Optional
Lijnbeschrijving.
quantity
decimaal
Optional
Quantity, default 1.
unit_price
decimaal
Optional
Eenheidsprijs exclusief BTW.
vat_rate
decimaal
Optional
VAT rate, default 21.
discount_percentage
decimaal
Optional
Percentage korting.
product_code
tekenreeks
Optional
Associated product code.
product_id
geheel getal
Optional
Associated product identifier.
packages
decimaal
Optional
Number of packages.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/documentline/list
Sleutel + drager
Een document met al zijn regels ophalen.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
guid
uuid
Vereist
GUID of the document whose lines must be retrieved.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/documentline/update
Sleutel + drager
Update een lijn die door GUID is geïdentificeerd.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
uuid
Vereist
Documenten.
line_guid
uuid
Vereist
GUID of the line to update.
text
tekenreeks
Optional
Lijnbeschrijving.
quantity
decimaal
Optional
Quantity, default 1.
unit_price
decimaal
Optional
Eenheidsprijs exclusief BTW.
vat_rate
decimaal
Optional
VAT rate, default 21.
discount_percentage
decimaal
Optional
Percentage korting.
product_code
tekenreeks
Optional
Associated product code.
product_id
geheel getal
Optional
Associated product identifier.
packages
decimaal
Optional
Number of packages.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/documentline/delete
Sleutel + drager
Verwijder een regel en bereken de totalen.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
uuid
Vereist
Documenten.
line_guid
uuid
Vereist
GUID of the line to delete.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Eindpunten
Automatically receive SellViaApp changes in your ERP, CRM, automation or business service.
/webhooks/events
Sleutel + drager
List all available events and the contract version.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/endpoints/list
Sleutel + drager
List destinations, status and counters.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/endpoints/create
Sleutel + drager
Create an HTTPS destination and receive its signing secret once.
label
tekenreeks
Vereist
Internal name for this destination.
target_url
url
Vereist
Public HTTPS URL on port 443. Private networks and redirects are rejected.
events
array
Vereist
Exact events, a group such as product.*, or all with *.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/endpoints/update
Sleutel + drager
Update the destination, events or pause delivery.
id
geheel getal
Vereist
Destination identifier.
label
tekenreeks
Optional
New label.
target_url
url
Optional
New HTTPS URL.
events
array
Optional
New event selection.
status
enum
Optional
active | paused
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/endpoints/delete
Sleutel + drager
Soft-delete a destination.
id
geheel getal
Vereist
Destination identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/endpoints/rotate-secret
Sleutel + drager
Replace the HMAC secret and reveal it once.
id
geheel getal
Vereist
Destination identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/deliveries/list
Sleutel + drager
Inspect deliveries, responses, errors and attempts.
page
geheel getal
Optional
Paginanummer, vanaf 1.
per_page
geheel getal
Optional
Number of results per page.
status
enum
Optional
pending | processing | retry | delivered | failed
endpoint_id
geheel getal
Optional
Limit results to one destination.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/deliveries/retry
Sleutel + drager
Retry one delivery without replaying the others.
id
geheel getal
Vereist
Internal delivery identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/test
Sleutel + drager
Emit and deliver a signed test event.
endpoint_id
geheel getal
Vereist
Destination to test.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/webhooks/stats
Sleutel + drager
Retrieve the last thirty days of delivery metrics.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Eindpunten
Mobile notifications and external synchronisation.
/admin/notification/sendtomobile
Sleutel + drager
Mobiele meldingen ophalen.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/admin/notification/setdelivery
Sleutel + drager
Markeer een kennisgeving zoals deze is gedaan.
customer_id
geheel getal
Optional
Required only with an integration token when the operation targets a specific customer.
guid
tekenreeks
Vereist
Notification GUID token.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/categories/sync
Sleutel + drager
Batch-sync WooCommerce categories and subcategories.
items
array
Vereist
Up to 500 categories. Each object uses external_id, name and, for a subcategory, parent_external_id.
items[].external_id
tekenreeks
Vereist
Stable WooCommerce identifier.
items[].name
tekenreeks
Vereist
Visible name.
items[].parent_external_id
tekenreeks
Optional
Parent category identifier.
items[].sort_order
geheel getal
Optional
Display order.
items[].images
array
Optional
Up to five HTTPS URLs.
items[].active
booleaans
Optional
false archives the category.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/products/sync
Sleutel + drager
Sync products, variations, images, prices, VAT, stock and visibility.
items
array
Vereist
Up to 250 products or variations per batch.
items[].external_id
tekenreeks
Vereist
Stable WooCommerce identifier used for deduplication.
items[].type
enum
Optional
simple | variable | variation
items[].parent_external_id
tekenreeks
Optional
Parent product for a variation.
items[].sku
tekenreeks
Optional
SKU; a fallback code is generated when omitted.
items[].name
tekenreeks
Vereist
Product name.
items[].description
tekenreeks
Optional
Product description.
items[].regular_price
decimaal
Optional
Regular price.
items[].sale_price
decimaal
Optional
Sale price.
items[].date_on_sale_from
datum
Optional
ISO 8601 sale start.
items[].date_on_sale_to
datum
Optional
ISO 8601 sale end.
items[].vat_rate
decimaal
Optional
BTW-tarief.
items[].stock_quantity
geheel getal
Optional
Available stock.
items[].category_external_id
tekenreeks
Optional
Synchronised primary category.
items[].subcategory_external_id
tekenreeks
Optional
Synchronised subcategory.
items[].images
array
Optional
Up to five HTTPS images.
items[].attributes
array
Optional
WooCommerce variation attributes.
items[].active
booleaans
Optional
Visibility in SellViaApp.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/customers/sync
Sleutel + drager
Create or update WooCommerce customer accounts without sending email.
items
array
Vereist
Up to 250 customer accounts per batch. No email is sent.
items[].external_id
tekenreeks
Vereist
Stable WooCommerce user identifier.
items[].username
tekenreeks
Vereist
WooCommerce username preserved exactly in client.login.
items[].email
e-mail
Optional
Customer email address used for deduplication.
items[].first_name
tekenreeks
Optional
Voornaam van de klant.
items[].last_name
tekenreeks
Optional
Achternaam van de klant.
items[].company
tekenreeks
Optional
Company or business name.
items[].phone
tekenreeks
Optional
Phone number.
items[].vat_number
tekenreeks
Optional
VAT number.
items[].language
iso-639-1
Optional
Two-letter language; English by default.
items[].billing
object
Optional
Full WooCommerce billing address.
items[].shipping
object
Optional
Shipping address retained in synchronisation metadata.
items[].active
booleaans
Optional
Account active state.
items[].send_email
booleaans
Optional
Must remain false. This route never sends email.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/products/inventory
Sleutel + drager
Quickly update prices, promotions, stock or visibility only.
items
array
Vereist
Up to 500 lightweight updates.
items[].external_id
tekenreeks
Vereist
Previously synchronised product.
items[].stock_quantity
geheel getal
Optional
New quantity.
items[].regular_price
decimaal
Optional
New regular price.
items[].sale_price
decimaal
Optional
New sale price.
items[].active
booleaans
Optional
New visibility.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/products/archive
Sleutel + drager
Batch-archive deleted WooCommerce products without changing orders.
entity_type
enum
Optional
product | category | subcategory
items
array
Vereist
List of up to 500 external identifiers.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/orders/feed
Sleutel + drager
Retrieve confirmed orders with cursor-based reconciliation.
cursor
tekenreeks
Optional
Opaque cursor returned by the previous response.
updated_since
datetime
Optional
ISO 8601 starting date.
limit
geheel getal
Optional
1 to 100 orders.
unacknowledged_only
booleaans
Optional
Defaults to true to prevent duplicates.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/orders/acknowledge
Sleutel + drager
Confirm that an order was imported into WooCommerce.
items
array
Vereist
Orders processed by WooCommerce.
items[].order_guid
tekenreeks
Vereist
SellViaApp GUID returned by the feed.
items[].external_order_id
tekenreeks
Optional
WooCommerce order identifier.
items[].status
enum
Vereist
imported | failed | ignored
items[].error
tekenreeks
Optional
Explanation when import failed.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/webhooks/subscribe
Sleutel + drager
Register a signed HTTPS WooCommerce webhook.
target_url
url
Vereist
Public HTTPS URL; private networks are rejected.
events
array
Optional
order.created | order.updated | order.cancelled | *
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/webhooks/list
Sleutel + drager
List active WooCommerce webhooks.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/webhooks/delete
Sleutel + drager
Disable a WooCommerce webhook.
id
geheel getal
Vereist
Webhook identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/webhooks/process
Sleutel + drager
Process pending webhook deliveries with automatic retries.
limit
geheel getal
Optional
Maximum deliveries to process.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/woocommerce/sync/logs
Sleutel + drager
View the technical synchronisation log.
page
geheel getal
Optional
Paginanummer, vanaf 1.
per_page
geheel getal
Optional
Number of results per page.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/categories/sync
Sleutel + drager
Sync Shopify collections and product types.
items
array
Vereist
Up to 500 collections or product types.
items[].external_id
tekenreeks
Vereist
Stable Shopify GID.
items[].name
tekenreeks
Vereist
Visible name.
items[].parent_external_id
tekenreeks
Optional
Parent collection for a product type.
items[].images
array
Optional
HTTPS URLs.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/categories/archive
Sleutel + drager
Archive a deleted Shopify collection.
items
array
Vereist
GIDs of deleted collections.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/products/sync
Sleutel + drager
Sync Shopify products, variants, images, prices, inventory and visibility.
items
array
Vereist
Up to 250 Shopify variants per batch.
items[].external_id
tekenreeks
Vereist
Variant GID.
items[].parent_external_id
tekenreeks
Optional
Parent product GID.
items[].sku
tekenreeks
Optional
SKU
items[].name
tekenreeks
Vereist
Product and variant title.
items[].regular_price
decimaal
Optional
Regular or compare-at price.
items[].sale_price
decimaal
Optional
Active sale price.
items[].stock_quantity
geheel getal
Optional
Available quantity.
items[].images
array
Optional
Up to five HTTPS images.
items[].active
booleaans
Optional
SellViaApp visibility.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/products/inventory
Sleutel + drager
Quickly update Shopify prices, inventory or visibility.
items
array
Vereist
Up to 500 lightweight updates.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/products/archive
Sleutel + drager
Archive Shopify variants by identifier.
items
array
Vereist
Variant GIDs to archive.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/products/archive-parent
Sleutel + drager
Archive every variant of a deleted Shopify product.
items
array
Vereist
Up to 100 parent product GIDs.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/customers/sync
Sleutel + drager
Sync Shopify customers without sending email.
items
array
Vereist
Up to 250 customers; no email is sent.
items[].external_id
tekenreeks
Vereist
Shopify customer GID.
items[].username
tekenreeks
Vereist
Username used in SellViaApp.
items[].email
e-mail
Optional
Customer email.
items[].send_email
booleaans
Optional
Must remain false.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/customers/redact
Sleutel + drager
Redact customer data requested by Shopify.
items
array
Optional
Customer GIDs to redact.
all
booleaans
Optional
Redacts all Shopify customers for shop/redact.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/orders/feed
Sleutel + drager
Retrieve SellViaApp orders not yet imported into Shopify.
cursor
tekenreeks
Optional
Opaque cursor.
limit
geheel getal
Optional
1–100
unacknowledged_only
booleaans
Optional
true recommended.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/orders/acknowledge
Sleutel + drager
Acknowledge a Shopify order import.
items
array
Vereist
Imported orders.
items[].order_guid
tekenreeks
Vereist
SellViaApp GUID.
items[].external_order_id
tekenreeks
Optional
Created Shopify GID.
items[].status
enum
Vereist
imported | failed | ignored
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/webhooks/subscribe
Sleutel + drager
Register the signed SellViaApp webhook for Shopify.
target_url
url
Vereist
Connector HTTPS URL.
events
array
Optional
order.created | order.updated | order.cancelled | *
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/webhooks/list
Sleutel + drager
List Shopify connector webhooks.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/webhooks/delete
Sleutel + drager
Disable a Shopify webhook.
id
geheel getal
Vereist
Webhook ID
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/webhooks/process
Sleutel + drager
Retry pending Shopify notifications.
limit
geheel getal
Optional
Maximum count.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/account
Sleutel + drager
Identify the store and retrieve its mobile test account.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/shopify/sync/logs
Sleutel + drager
View Shopify logs isolated from WooCommerce.
page
geheel getal
Optional
Paginanummer, vanaf 1.
per_page
geheel getal
Optional
Number of results per page.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/connect
Openbaar
Connect a Wix instance to an existing SellViaApp Dashboard account.
email
e-mail
Vereist
Email used to sign in to the SellViaApp Dashboard.
password
tekenreeks
Vereist
Verified once and never stored by the connector.
instance_id
tekenreeks
Vereist
Stable Wix installation identifier.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/account
Sleutel + drager
Identify the SellViaApp account connected to Wix and its mobile test account.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/disconnect
Sleutel + drager
Revoke the connector token and disconnect Wix.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/categories/sync
Sleutel + drager
Synchronise Wix Stores V1/V3 categories or collections.
items
array
Vereist
Up to 500 Wix categories or collections per batch.
items[].external_id
tekenreeks
Vereist
Stable Wix identifier.
items[].name
tekenreeks
Vereist
Naam weergegeven in de app.
items[].parent_external_id
tekenreeks
Optional
Parent category identifier.
items[].image
url
Optional
HTTPS presentation image.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/products/sync
Sleutel + drager
Synchronise Wix products with images, prices, inventory and visibility.
items
array
Vereist
Up to 250 Wix products or variants per batch.
items[].external_id
tekenreeks
Vereist
Wix product or variant identifier.
items[].parent_external_id
tekenreeks
Optional
Parent product of a variant.
items[].sku
tekenreeks
Optional
SKU
items[].name
tekenreeks
Vereist
Product title.
items[].regular_price
decimaal
Optional
Regular price.
items[].sale_price
decimaal
Optional
Active sale price.
items[].stock_quantity
geheel getal
Optional
Available stock.
items[].images
array
Optional
Up to five HTTPS images.
items[].visible
booleaans
Optional
Visibility in SellViaApp.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/products/inventory
Sleutel + drager
Quickly update Wix prices, inventory or visibility.
items
array
Vereist
Lightweight price, inventory or visibility updates.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/products/archive
Sleutel + drager
Archive deleted Wix products.
entity_type
enum
Optional
product | category | subcategory
items
array
Vereist
External Wix identifiers to archive.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/customers/sync
Sleutel + drager
Synchronise Wix contacts without sending email.
items
array
Vereist
Up to 250 contacts; no SellViaApp email is sent.
items[].external_id
tekenreeks
Vereist
Wix contact identifier.
items[].username
tekenreeks
Vereist
Email or fallback username.
items[].active
booleaans
Optional
true for synchronised contacts.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/customers/redact
Sleutel + drager
Redact one or more synchronised Wix contacts.
all
booleaans
Optional
Redact all contacts originating from Wix.
items
array
Optional
External Wix identifiers to redact when all is false.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/privacy/shop-redact
Sleutel + drager
Remove Wix-origin data after uninstall.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/orders/feed
Sleutel + drager
Read SellViaApp orders to reconcile with Wix.
cursor
tekenreeks
Optional
Opaque cursor from the previous page.
updated_since
datetime
Optional
Optional ISO 8601 date.
limit
geheel getal
Optional
1–100
unacknowledged_only
booleaans
Optional
Defaults to true to prevent duplicates.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/orders/acknowledge
Sleutel + drager
Record the result of a Wix order reconciliation.
items
array
Vereist
Reconciliation results.
items[].order_guid
tekenreeks
Vereist
SellViaApp order GUID.
items[].external_order_id
tekenreeks
Optional
Linked Wix order identifier.
items[].status
enum
Vereist
imported | failed | ignored
items[].error
tekenreeks
Optional
Readable error when processing fails.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/webhooks/subscribe
Sleutel + drager
Create a signed SellViaApp destination for the Wix connector.
target_url
url
Vereist
HTTPS URL of the receiving system.
events
array
Optional
order.created | order.updated | order.cancelled | *
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/webhooks/list
Sleutel + drager
List SellViaApp webhooks for the Wix connector.
No business parameter is expected. Send only the indicated authentication headers.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/webhooks/delete
Sleutel + drager
Disable a Wix connector webhook.
id
geheel getal
Vereist
Webhook ID
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/webhooks/process
Sleutel + drager
Process pending SellViaApp deliveries for Wix.
limit
geheel getal
Optional
Maximum number of deliveries.
{
"success": true,
"message": "Operation successful",
"data": {
"id": 123,
"status": "ok"
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}/wix/sync/logs
Sleutel + drager
View the isolated Wix synchronisation log.
page
geheel getal
Optional
Paginanummer, vanaf 1.
per_page
geheel getal
Optional
Number of results per page.
{
"success": true,
"message": "Operation successful",
"data": {
"items": [],
"pagination": {
"page": 1,
"per_page": 25,
"total": 0,
"last_page": 1
}
},
"error": null
}{
"success": false,
"message": "The request cannot be processed.",
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"category": "validation",
"message": "Check the indicated parameters.",
"details": {
"field": "parameter_name"
}
}
}Reference
Each row has a “Parameters and responses” button showing required or optional fields, possible statuses and JSON examples. An empty list means the resource is not populated yet, not that the endpoint is down.