the params to create a order
Get a list of failed notifications via webhook that could not be completed with HTTP Status 200
more information https://developers.ualabis.com.ar/notifications/failed-notifications/failed *
const failedNotifications = await getFailedNotifications();
the failded notifications
Gets a previously created order with unique identifier.
more information https://developers.ualabis.com.ar/orders/get-order/get/order
const order = await getOrder('d5894497-7');
the previously created order
the order id
Get a list of orders that be created
more information https://developers.ualabis.com.ar/orders/get-order/gets/orders
// Gets first 100 orders with creation dates between 2022-08-04 and 2022-08-09
const orders = await getOrders({limit:'1', fromDate:'2022-08-04', toDate:'2022-08-09'});
the orders
Optional
orderSearchParameters: OrderSearchParamsparams to search and filter orders - not required
Config with your params to auth
the params to auth
Generated using TypeDoc
Create an order that you can use to make a sale.
Description
more information https://developers.ualabis.com.ar/orders/create-order/post
Example