Create the destination
In Dashboard → Webhooks, enter an HTTPS URL and select events. The secret is shown once.
Documentazione del fornitore
Collegare la piattaforma ERP, e-commerce, POS o software aziendale a SellViaApp. Invia categorie, prodotti e prezzi, quindi recuperare gli ordini di negozio confermati come JSON.
https://api.sellviaapp.com/X-API-Key + BearerAvvio rapido
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)
Punti di fine
Creare e gestire account clienti per ogni negozio.
/customer/add
Chiave API
Crea un cliente e genera il login del fornitore.
nom
stringa
Obbligatorio
Il cognome del cliente.
prenom
stringa
Obbligatorio
Nome del cliente.
email
email
Obbligatorio
Email unica all'interno del fornitore.
denomination
stringa
Optional
Nome della società, facoltativo.
password
stringa
Obbligatorio
Almeno otto personaggi.
address
stringa
Optional
Postal address.
zipcode
stringa
Optional
Postal code.
city
stringa
Optional
City.
country
stringa
Optional
Country.
phone
stringa
Optional
Phone number.
cellphone
stringa
Optional
Mobile phone number.
vat_number
stringa
Optional
VAT number.
language
stringa
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
Chiave + Cuscinetto
Elenca o filtra le informazioni dei clienti autorizzate.
page
Integer
Optional
Numero di pagina, a partire da 1.
per_page
Integer
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
Chiave + Cuscinetto
Recupera il profilo del cliente autenticato.
customer_id
Integer
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
Chiave + Cuscinetto
Profilo di aggiornamento, lingua, tipo, email o password.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
first_name
stringa
Optional
First name.
last_name
stringa
Optional
Last name.
company
stringa
Optional
Company name.
email
email
Optional
New email address, unique within the shop.
address
stringa
Optional
Postal address.
zipcode
stringa
Optional
Postal code.
city
stringa
Optional
City.
country
stringa
Optional
Country.
phone
stringa
Optional
Phone number.
cellphone
stringa
Optional
Mobile phone number.
vat_number
stringa
Optional
VAT number.
language
stringa
Optional
Two-letter ISO language code.
account_type
enumera
Optional
company | individual
notifications_enabled
boolean
Optional
Allow mobile notifications.
password
stringa
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
Chiave + Cuscinetto
Disattivare l'account cliente nel negozio attivo.
customer_id
Integer
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"
}
}
}Punti di fine
Categorie, prodotti, immagini, prezzi, stock, promozioni e favoriti.
/fam1/list
Chiave + Cuscinetto
Elenca le categorie primarie.
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
Chiave + Cuscinetto
Creare una categoria primaria.
name
stringa
Obbligatorio
Visible category name.
external_key
stringa
Optional
Stable identifier from your software.
sort_order
Integer
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
Chiave + Cuscinetto
Aggiorna una categoria primaria.
id
Integer
Obbligatorio
Identifier of the category to update.
name
stringa
Obbligatorio
Visible category name.
external_key
stringa
Optional
Stable identifier from your software.
sort_order
Integer
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
Chiave + Cuscinetto
Nascondere una categoria primaria.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Elenca le sottocategorie.
category_id
Integer
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
Chiave + Cuscinetto
Crea una sottocategoria.
category_id
Integer
Obbligatorio
Parent primary category identifier.
name
stringa
Obbligatorio
Visible category name.
external_key
stringa
Optional
Stable identifier from your software.
sort_order
Integer
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
Chiave + Cuscinetto
Aggiorna una sottocategoria.
id
Integer
Obbligatorio
Identifier of the subcategory to update.
name
stringa
Obbligatorio
Visible category name.
external_key
stringa
Optional
Stable identifier from your software.
sort_order
Integer
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
Chiave + Cuscinetto
Nascondi una sottocategoria.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Elenco e ricerca prodotti con impaginazione.
page
Integer
Optional
Numero di pagina, a partire da 1.
per_page
Integer
Optional
Number of results per page.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
search
stringa
Optional
Cerca per codice, nome o descrizione.
category_id
Integer
Optional
Filtro di categoria primario.
subcategory_id
Integer
Optional
Filtro sottocategoria.
price_group
stringa
Optional
Customer price group.
favorites
boolean
Optional
Return favourites only.
promotions
boolean
Optional
Return active promotions only.
new
boolean
Optional
Return new products only.
progressive
boolean
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
URL del registro
Servire un'immagine firmata e memorizzabile del prodotto.
supplier
stringa
Obbligatorio
Public shop suffix.
id
Integer
Obbligatorio
Product identifier.
slot
Integer
Optional
Image slot from 1 to 5.
signature
stringa
Obbligatorio
Signed-link signature returned by product/list.
variant
enumera
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
Chiave + Cuscinetto
Creare un prodotto.
code
stringa
Obbligatorio
Codice prodotto unico all'interno del negozio.
name
stringa
Obbligatorio
Nome visualizzato nell'app.
description
stringa
Optional
Descrizione dettagliata del prodotto.
base_price
decimale
Optional
Prezzo di vendita escluso tassa in base alla vostra configurazione.
vat_rate
decimale
Optional
Tassi IVA, ad esempio 21.
category_id
Integer
Optional
Primary category identifier.
subcategory_id
Integer
Optional
Subcategory identifier.
external_key
stringa
Optional
Identificatore stabile dal tuo ERP.
unit
stringa
Optional
Unit code, for example pc.
unit_name
stringa
Optional
Human-readable unit name.
image_url
url
Optional
URL HTTPS dell'immagine principale.
is_new
boolean
Optional
Highlight the product as new.
active
boolean
Optional
Controlla la visibilità del prodotto.
{
"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
Chiave + Cuscinetto
Aggiorna un prodotto.
id
Integer
Obbligatorio
Identifier of the product to update.
code
stringa
Obbligatorio
Codice prodotto unico all'interno del negozio.
name
stringa
Obbligatorio
Nome visualizzato nell'app.
description
stringa
Optional
Descrizione dettagliata del prodotto.
base_price
decimale
Optional
Prezzo di vendita escluso tassa in base alla vostra configurazione.
vat_rate
decimale
Optional
Tassi IVA, ad esempio 21.
category_id
Integer
Optional
Primary category identifier.
subcategory_id
Integer
Optional
Subcategory identifier.
external_key
stringa
Optional
Identificatore stabile dal tuo ERP.
unit
stringa
Optional
Unit code, for example pc.
unit_name
stringa
Optional
Human-readable unit name.
image_url
url
Optional
URL HTTPS dell'immagine principale.
is_new
boolean
Optional
Highlight the product as new.
active
boolean
Optional
Controlla la visibilità del prodotto.
{
"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
Chiave + Cuscinetto
Nascondi un prodotto.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Aggiungere o rimuovere un prodotto dai preferiti.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
product_id
Integer
Obbligatorio
Product identifier.
favorite
boolean
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
Chiave + Cuscinetto
List prices applicable to the customer group, falling back to the product sales price.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
product_id
Integer
Optional
Limit results to one product.
price_group
stringa
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
Chiave + Cuscinetto
Elenca le marche disponibili.
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
Chiave + Cuscinetto
Elenco disponibili dimensioni.
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
Chiave + Cuscinetto
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"
}
}
}Punti di fine
Gestisci il carrello e confermi un ordine atomico.
/order/list
Chiave + Cuscinetto
List every confirmed shop order with pagination.
page
Integer
Optional
Numero di pagina, a partire da 1.
per_page
Integer
Optional
Number of results per page.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
guid
stringa
Optional
Filter a confirmed order by GUID.
from_date
data
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
Chiave + Cuscinetto
Cancellare ed eliminare il carrello corrente.
customer_id
Integer
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
Chiave + Cuscinetto
Calcola il carrello subtotale, IVA e totale.
customer_id
Integer
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
Chiave + Cuscinetto
Calculate shipping fees from the cart, fulfilment mode and country.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
delivery_mode
enumera
Obbligatorio
pickup | delivery
delivery_country
stringa
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
Chiave + Cuscinetto
Conta le linee nel carrello.
customer_id
Integer
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
Chiave + Cuscinetto
Confermare l'ordine, la modalità di esecuzione e l'indirizzo.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
order_guid
Uuid
Optional
GUID del carrello da confermare.
delivery_mode
enumera
Obbligatorio
pickup | delivery
delivery_address
stringa
Optional
Richiesto per la consegna.
delivery_country
stringa
Optional
Two-letter ISO code or country name used to calculate the rate.
delivery_date
data
Optional
YYYYY-MM-DD
delivery_comment
stringa
Optional
Istruzioni di adempimento.
language
stringa
Optional
Linguaggio e-mail transazionale.
{
"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
Chiave + Cuscinetto
Aggiungere un prodotto e la quantità al carrello.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
product_id
Integer
Obbligatorio
Identifier of the product to add.
quantity
decimale
Obbligatorio
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
Chiave + Cuscinetto
Recuperare le linee di carrello correnti.
customer_id
Integer
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
Chiave + Cuscinetto
Aggiornare una quantità di linea.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
item_id
Integer
Obbligatorio
Cart line identifier.
quantity
decimale
Obbligatorio
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
Chiave + Cuscinetto
Rimuovere una linea dal carrello.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
item_id
Integer
Obbligatorio
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"
}
}
}Punti di fine
Choose pay on delivery or open a secure Stripe payment, then retrieve its server-verified status.
/payment/config
Chiave + Cuscinetto
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
Chiave + Cuscinetto
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
enumera
Obbligatorio
order | booking
purpose_id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Record pay on delivery or replace a still-open Stripe payment after its session is securely checked and expired.
purpose_type
enumera
Obbligatorio
order | booking
purpose_id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Retrieve a payment status; only the signed Stripe webhook can confirm it as paid.
reference
stringa
Optional
SellViaApp payment reference. Otherwise provide purpose_type and purpose_id.
purpose_type
enumera
Optional
order | booking
purpose_id
Integer
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"
}
}
}Punti di fine
Fatture, stime, ordini e loro linee.
/document/add
Chiave + Cuscinetto
Creare un documento legato al cliente.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
doc_type
stringa
Optional
invoice | estimate | purchase_order
doc_number
stringa
Optional
Document number; generated automatically when omitted on creation.
doc_date
data
Optional
YYYYY-MM-DD
due_date
data
Optional
YYYYY-MM-DD
payment_method
stringa
Optional
Metodo di pagamento.
remark
stringa
Optional
Osservazione libera.
{
"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
Chiave + Cuscinetto
Elenca o filtra i documenti.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
doc_type
stringa
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
Chiave + Cuscinetto
Aggiornare un documento identificato da GUID.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
Uuid
Obbligatorio
GUID of the document to update.
doc_type
stringa
Optional
invoice | estimate | purchase_order
doc_number
stringa
Optional
Document number; generated automatically when omitted on creation.
doc_date
data
Optional
YYYYY-MM-DD
due_date
data
Optional
YYYYY-MM-DD
payment_method
stringa
Optional
Metodo di pagamento.
remark
stringa
Optional
Osservazione libera.
{
"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
Chiave + Cuscinetto
Eliminare un documento e le sue linee.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
Uuid
Obbligatorio
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
Chiave + Cuscinetto
Aggiungere una riga e ricalcolare il documento.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
Uuid
Obbligatorio
Documento di ricerca.
text
stringa
Optional
Descrizione della linea.
quantity
decimale
Optional
Quantity, default 1.
unit_price
decimale
Optional
Prezzo unitario IVA esclusa.
vat_rate
decimale
Optional
VAT rate, default 21.
discount_percentage
decimale
Optional
Percentuale di sconto.
product_code
stringa
Optional
Associated product code.
product_id
Integer
Optional
Associated product identifier.
packages
decimale
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
Chiave + Cuscinetto
Recuperare un documento con tutte le sue linee.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
guid
Uuid
Obbligatorio
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
Chiave + Cuscinetto
Aggiorna una linea identificata da GUID.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
Uuid
Obbligatorio
Documento di ricerca.
line_guid
Uuid
Obbligatorio
GUID of the line to update.
text
stringa
Optional
Descrizione della linea.
quantity
decimale
Optional
Quantity, default 1.
unit_price
decimale
Optional
Prezzo unitario IVA esclusa.
vat_rate
decimale
Optional
VAT rate, default 21.
discount_percentage
decimale
Optional
Percentuale di sconto.
product_code
stringa
Optional
Associated product code.
product_id
Integer
Optional
Associated product identifier.
packages
decimale
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
Chiave + Cuscinetto
Eliminare una linea e ricalcolare i totali.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
document_guid
Uuid
Obbligatorio
Documento di ricerca.
line_guid
Uuid
Obbligatorio
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"
}
}
}Punti di fine
Automatically receive SellViaApp changes in your ERP, CRM, automation or business service.
/webhooks/events
Chiave + Cuscinetto
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
Create an HTTPS destination and receive its signing secret once.
label
stringa
Obbligatorio
Internal name for this destination.
target_url
url
Obbligatorio
Public HTTPS URL on port 443. Private networks and redirects are rejected.
events
array
Obbligatorio
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
Chiave + Cuscinetto
Update the destination, events or pause delivery.
id
Integer
Obbligatorio
Destination identifier.
label
stringa
Optional
New label.
target_url
url
Optional
New HTTPS URL.
events
array
Optional
New event selection.
status
enumera
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
Chiave + Cuscinetto
Soft-delete a destination.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Replace the HMAC secret and reveal it once.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Inspect deliveries, responses, errors and attempts.
page
Integer
Optional
Numero di pagina, a partire da 1.
per_page
Integer
Optional
Number of results per page.
status
enumera
Optional
pending | processing | retry | delivered | failed
endpoint_id
Integer
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
Chiave + Cuscinetto
Retry one delivery without replaying the others.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Emit and deliver a signed test event.
endpoint_id
Integer
Obbligatorio
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
Chiave + Cuscinetto
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"
}
}
}Punti di fine
Mobile notifications and external synchronisation.
/admin/notification/sendtomobile
Chiave + Cuscinetto
Recuperare le notifiche mobili.
customer_id
Integer
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
Chiave + Cuscinetto
Segna una notifica come consegnata.
customer_id
Integer
Optional
Required only with an integration token when the operation targets a specific customer.
guid
stringa
Obbligatorio
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
Chiave + Cuscinetto
Batch-sync WooCommerce categories and subcategories.
items
array
Obbligatorio
Up to 500 categories. Each object uses external_id, name and, for a subcategory, parent_external_id.
items[].external_id
stringa
Obbligatorio
Stable WooCommerce identifier.
items[].name
stringa
Obbligatorio
Visible name.
items[].parent_external_id
stringa
Optional
Parent category identifier.
items[].sort_order
Integer
Optional
Display order.
items[].images
array
Optional
Up to five HTTPS URLs.
items[].active
boolean
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
Chiave + Cuscinetto
Sync products, variations, images, prices, VAT, stock and visibility.
items
array
Obbligatorio
Up to 250 products or variations per batch.
items[].external_id
stringa
Obbligatorio
Stable WooCommerce identifier used for deduplication.
items[].type
enumera
Optional
simple | variable | variation
items[].parent_external_id
stringa
Optional
Parent product for a variation.
items[].sku
stringa
Optional
SKU; a fallback code is generated when omitted.
items[].name
stringa
Obbligatorio
Product name.
items[].description
stringa
Optional
Product description.
items[].regular_price
decimale
Optional
Regular price.
items[].sale_price
decimale
Optional
Sale price.
items[].date_on_sale_from
data
Optional
ISO 8601 sale start.
items[].date_on_sale_to
data
Optional
ISO 8601 sale end.
items[].vat_rate
decimale
Optional
Tassi IVA.
items[].stock_quantity
Integer
Optional
Available stock.
items[].category_external_id
stringa
Optional
Synchronised primary category.
items[].subcategory_external_id
stringa
Optional
Synchronised subcategory.
items[].images
array
Optional
Up to five HTTPS images.
items[].attributes
array
Optional
WooCommerce variation attributes.
items[].active
boolean
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
Chiave + Cuscinetto
Create or update WooCommerce customer accounts without sending email.
items
array
Obbligatorio
Up to 250 customer accounts per batch. No email is sent.
items[].external_id
stringa
Obbligatorio
Stable WooCommerce user identifier.
items[].username
stringa
Obbligatorio
WooCommerce username preserved exactly in client.login.
items[].email
email
Optional
Customer email address used for deduplication.
items[].first_name
stringa
Optional
Nome del cliente.
items[].last_name
stringa
Optional
Il cognome del cliente.
items[].company
stringa
Optional
Company or business name.
items[].phone
stringa
Optional
Phone number.
items[].vat_number
stringa
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
boolean
Optional
Account active state.
items[].send_email
boolean
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
Chiave + Cuscinetto
Quickly update prices, promotions, stock or visibility only.
items
array
Obbligatorio
Up to 500 lightweight updates.
items[].external_id
stringa
Obbligatorio
Previously synchronised product.
items[].stock_quantity
Integer
Optional
New quantity.
items[].regular_price
decimale
Optional
New regular price.
items[].sale_price
decimale
Optional
New sale price.
items[].active
boolean
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
Chiave + Cuscinetto
Batch-archive deleted WooCommerce products without changing orders.
entity_type
enumera
Optional
product | category | subcategory
items
array
Obbligatorio
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
Chiave + Cuscinetto
Retrieve confirmed orders with cursor-based reconciliation.
cursor
stringa
Optional
Opaque cursor returned by the previous response.
updated_since
datetime
Optional
ISO 8601 starting date.
limit
Integer
Optional
1 to 100 orders.
unacknowledged_only
boolean
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
Chiave + Cuscinetto
Confirm that an order was imported into WooCommerce.
items
array
Obbligatorio
Orders processed by WooCommerce.
items[].order_guid
stringa
Obbligatorio
SellViaApp GUID returned by the feed.
items[].external_order_id
stringa
Optional
WooCommerce order identifier.
items[].status
enumera
Obbligatorio
imported | failed | ignored
items[].error
stringa
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
Chiave + Cuscinetto
Register a signed HTTPS WooCommerce webhook.
target_url
url
Obbligatorio
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
Disable a WooCommerce webhook.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Process pending webhook deliveries with automatic retries.
limit
Integer
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
Chiave + Cuscinetto
View the technical synchronisation log.
page
Integer
Optional
Numero di pagina, a partire da 1.
per_page
Integer
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
Chiave + Cuscinetto
Sync Shopify collections and product types.
items
array
Obbligatorio
Up to 500 collections or product types.
items[].external_id
stringa
Obbligatorio
Stable Shopify GID.
items[].name
stringa
Obbligatorio
Visible name.
items[].parent_external_id
stringa
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
Chiave + Cuscinetto
Archive a deleted Shopify collection.
items
array
Obbligatorio
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
Chiave + Cuscinetto
Sync Shopify products, variants, images, prices, inventory and visibility.
items
array
Obbligatorio
Up to 250 Shopify variants per batch.
items[].external_id
stringa
Obbligatorio
Variant GID.
items[].parent_external_id
stringa
Optional
Parent product GID.
items[].sku
stringa
Optional
SKU
items[].name
stringa
Obbligatorio
Product and variant title.
items[].regular_price
decimale
Optional
Regular or compare-at price.
items[].sale_price
decimale
Optional
Active sale price.
items[].stock_quantity
Integer
Optional
Available quantity.
items[].images
array
Optional
Up to five HTTPS images.
items[].active
boolean
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
Chiave + Cuscinetto
Quickly update Shopify prices, inventory or visibility.
items
array
Obbligatorio
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
Chiave + Cuscinetto
Archive Shopify variants by identifier.
items
array
Obbligatorio
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
Chiave + Cuscinetto
Archive every variant of a deleted Shopify product.
items
array
Obbligatorio
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
Chiave + Cuscinetto
Sync Shopify customers without sending email.
items
array
Obbligatorio
Up to 250 customers; no email is sent.
items[].external_id
stringa
Obbligatorio
Shopify customer GID.
items[].username
stringa
Obbligatorio
Username used in SellViaApp.
items[].email
email
Optional
Customer email.
items[].send_email
boolean
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
Chiave + Cuscinetto
Redact customer data requested by Shopify.
items
array
Optional
Customer GIDs to redact.
all
boolean
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
Chiave + Cuscinetto
Retrieve SellViaApp orders not yet imported into Shopify.
cursor
stringa
Optional
Opaque cursor.
limit
Integer
Optional
1–100
unacknowledged_only
boolean
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
Chiave + Cuscinetto
Acknowledge a Shopify order import.
items
array
Obbligatorio
Imported orders.
items[].order_guid
stringa
Obbligatorio
SellViaApp GUID.
items[].external_order_id
stringa
Optional
Created Shopify GID.
items[].status
enumera
Obbligatorio
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
Chiave + Cuscinetto
Register the signed SellViaApp webhook for Shopify.
target_url
url
Obbligatorio
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
Disable a Shopify webhook.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Retry pending Shopify notifications.
limit
Integer
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
View Shopify logs isolated from WooCommerce.
page
Integer
Optional
Numero di pagina, a partire da 1.
per_page
Integer
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
Pubblico
Connect a Wix instance to an existing SellViaApp Dashboard account.
email
email
Obbligatorio
Email used to sign in to the SellViaApp Dashboard.
password
stringa
Obbligatorio
Verified once and never stored by the connector.
instance_id
stringa
Obbligatorio
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
Synchronise Wix Stores V1/V3 categories or collections.
items
array
Obbligatorio
Up to 500 Wix categories or collections per batch.
items[].external_id
stringa
Obbligatorio
Stable Wix identifier.
items[].name
stringa
Obbligatorio
Nome visualizzato nell'app.
items[].parent_external_id
stringa
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
Chiave + Cuscinetto
Synchronise Wix products with images, prices, inventory and visibility.
items
array
Obbligatorio
Up to 250 Wix products or variants per batch.
items[].external_id
stringa
Obbligatorio
Wix product or variant identifier.
items[].parent_external_id
stringa
Optional
Parent product of a variant.
items[].sku
stringa
Optional
SKU
items[].name
stringa
Obbligatorio
Product title.
items[].regular_price
decimale
Optional
Regular price.
items[].sale_price
decimale
Optional
Active sale price.
items[].stock_quantity
Integer
Optional
Available stock.
items[].images
array
Optional
Up to five HTTPS images.
items[].visible
boolean
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
Chiave + Cuscinetto
Quickly update Wix prices, inventory or visibility.
items
array
Obbligatorio
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
Chiave + Cuscinetto
Archive deleted Wix products.
entity_type
enumera
Optional
product | category | subcategory
items
array
Obbligatorio
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
Chiave + Cuscinetto
Synchronise Wix contacts without sending email.
items
array
Obbligatorio
Up to 250 contacts; no SellViaApp email is sent.
items[].external_id
stringa
Obbligatorio
Wix contact identifier.
items[].username
stringa
Obbligatorio
Email or fallback username.
items[].active
boolean
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
Chiave + Cuscinetto
Redact one or more synchronised Wix contacts.
all
boolean
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
Read SellViaApp orders to reconcile with Wix.
cursor
stringa
Optional
Opaque cursor from the previous page.
updated_since
datetime
Optional
Optional ISO 8601 date.
limit
Integer
Optional
1–100
unacknowledged_only
boolean
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
Chiave + Cuscinetto
Record the result of a Wix order reconciliation.
items
array
Obbligatorio
Reconciliation results.
items[].order_guid
stringa
Obbligatorio
SellViaApp order GUID.
items[].external_order_id
stringa
Optional
Linked Wix order identifier.
items[].status
enumera
Obbligatorio
imported | failed | ignored
items[].error
stringa
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
Chiave + Cuscinetto
Create a signed SellViaApp destination for the Wix connector.
target_url
url
Obbligatorio
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
Chiave + Cuscinetto
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
Chiave + Cuscinetto
Disable a Wix connector webhook.
id
Integer
Obbligatorio
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
Chiave + Cuscinetto
Process pending SellViaApp deliveries for Wix.
limit
Integer
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
Chiave + Cuscinetto
View the isolated Wix synchronisation log.
page
Integer
Optional
Numero di pagina, a partire da 1.
per_page
Integer
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.