#
API Documentation
#
Description
This endpoint allows you to retrieve all information about products in the website.
#
Data
Endpoint: /dashboard/api/v2/orders?f_Datefrom=2021-08-05T09%3A56%3A00-03%3A00&f_Dateto=2024-09-12T09%3A56%3A00-03%3A00&page=1&pagesize=2
#
Params
f_Datefrom (Date Range to get Order , YYYY-dd-mmT00:00:00-03:00)
f_Dateto (Date Range to get Order, YYYY-dd-mmT00:00:00-03:00)
pagesize (number of orders to show per page, max 200)
page (page requested)
#
Example
Endpoint: /dashboard/api/v2/orders?f_Datefrom=2021-05-31T00:00:00-03:00&f_Dateto=2024-06-07T00:00:00-03:00&page=1&pagesize=2
#
Auth
token header provided by Pow.
#
Response
Status: 200 OK
{
"data": [
{
"id": 2348,
"tipo": "NUEVO",
"invoicedDate": null,
"authorizedDate": "2021-11-30 16:06:17 -0300",
"creationDate": "2021-11-30 16:06:17 -0300",
"updateDate": "2022-02-10 12:59:03 -0300",
"currencyCode": "ARS",
"totalItems": 1,
"clientProfileData": [
{
"firstName": "Matias",
"lastName": "Fonseca",
"email": "martin@pow.la",
"document": "38066883"
}
],
"totals": [
{
"total_order": 1150.0,
"discount": "0.00",
"shippingprice": "150.00"
}
],
"shippingData": [
{
"shipdate": null,
"tipo_envio": "ShippingChoiceAddress",
"country": "Argentina",
"state": "Capital Federal",
"city": "Agronomia"
}
],
"status": "canceled",
"billingInfo": [
{
"country": "Argentina",
"state": "Capital Federal",
"city": "Agronomia"
}
],
"transactions": [
{
"firstDigits": null,
"installments": null,
"paymentSystemName": null,
"status": "canceled",
"gateway": "MercadopagoPayment"
}
],
"items": [
{
"variant_id": 1,
"item_id": 1,
"quantity": 1,
"price": "1000.00",
"sellerSku": "0ENHP1154130L",
"name": "SS CONTRAST COLLAR POLO",
"imageUrl": "http://template.pow.la/uploads/variant/image/1/Captura_de_Pantalla_2023-05-08_a_la_s__15.15.09.png",
"link": "http://template.pow.la/productos/0enhp115_-_ss-contrast-collar-polo&variant_id=1&main_property_id=2",
"listPrice": "1000.00"
}
]
}
// More orders...
]
}