Orders
In this section you will find all the APIs of Ventiapp related to Sales
Get Orders
GET
https://ventiapi.azurewebsites.net/api/orders/orders
This method returns the sales of the different sales channels that were captured by Ventiapp. The order in which they are displayed is by creation date in decreasing order (the newest will be seen first). This API can consume a maximum of 1 occurrence per minute.
Query Parameters
channel
string
Canal para poder filtrar las ventas
date
string
Fecha mínima de la cual se requieren las órdenes. formato MM/DD/YYYY ej: 06/30/2019
to
string
Fecha máxima de la cual se requieren las órdenes. formato MM/DD/YYYY ej: 06/30/2019
offset
number
Cantidad de órdenes salteadas, ejemplo offset = 50 nos traerá de la órden 51 a la 100
paging
number
Cantidad de items por página, máximo 50 items
sort
string
Tipo de ordenamiento van a tener las ordenes, mas detalle a continuación
Headers
Authorization
string
Bearer +token
Valid options for the sort parameter are:
added_desc : Fecha de Alta en VentiApp descendiente
added_asc: Fecha de Alta en VentiApp ascendiente
created_desc: Fecha de creación inicial de la compra descendiente
created_asc: Fecha de creación inicial de la compra ascendiente
modified_desc: Fecha de modificación de la compra descendiente
modified_asc: Fecha de modificación de la compra ascendiente
The valid options for the channel parameter are:
"amazon" (Amazon)
"claroshop" (Claroshop)
"elektra" (Elektra)
"linio" (Linio)
"meli" (Mercado Libre)
"mshops" (Mercado Shops)
"prestashop" (Prestashop)
"shopify" (Shopify)
"venticommerce" (VentiCommerce)
"vtex" (VTEX)
"walmart" (Walmart)
"wish" (Wish)
"woocommerce" (WooCommerce)
Find Order
GET
https://ventiapi.azurewebsites.net/api/orders/findorder
This method searches for a specific sale, or a cart with associated orders.
Query Parameters
orderid
string
ID Externo de la órden ó ID de carrito en caso de aplicar (ej: ID de MercadoLibre, se encuentra en número de órden y tiene un valor como el siguiente 111444123)
Create Order
POST
https://ventiapi.azurewebsites.net/api/orders/createorder
This method is used to insert an order in Ventiapp
Body de la llamada:
Update Order
PUT
https://ventiapi.azurewebsites.net/api/orders/updateorder/
This method is used to update an order in Ventiapp. The fields are optional, those that are not in the call will be ignored
Query Parameters
orderId
string
Example:
Print Label (BETA)
GET
https://ventiapi.azurewebsites.net/api/orders/printlabel/
This method is used to print the guide associated with the sale. When the guide is printed for the first time, the associated marketplace will notify the client that the order is being processed automatically, that is why we recommend verifying this process before an implementation in an automated system. The externalId, or the orderId are mandatory, with one of the two the call is already valid The type field is optional, in this you have to indicate if it is zpl or pdf (Not all channels support ZPL, Ventiapp is working to perform the conversion). The default value is pdf Channels: - Guías generadas desde Ventiapp (ej: EnviaYa, Skydropx o paquetería propia) - Mercado Libre (BETA) - Mercado Shops (BETA) - Linio (BETA) - Amazon (en desarrollo) - Claroshop (en desarrollo) - Walmart (en desarollo)
Query Parameters
externalId
string
ID externo de la venta (del marketplace o plataforma de ecommerce)
type
string
Tipo de guía que se desea imprimir
orderId
integer
ID de Ventiapp
Última actualización