# Orders Obtén los datos de tus órdenes Endpoint: GET /api/v1/orders Version: 1.0.0 Security: api-key ## Query parameters: - `created_from` (string) busca las órdenes creadas desde una fecha en especifico Example: "2023-05-17" - `created_to` (string) busca las órdenes creadas hasta una fecha en especifico Example: "2023-05-17" - `page` (integer) busca la pagina específica de órdenes ## Response 200 fields (application/json): - `orders` (array) - `orders.web_id` (string) - `orders.status` (string) - `orders.subtotal` (string) - `orders.tax_amount` (string) - `orders.total` (string) - `orders.shipping_value` (string) - `orders.notes` (string) - `orders.sales_channel` (string) - `orders.created_at` (string) - `orders.archived` (boolean) - `orders.customer` (object) - `orders.customer.first_name` (string) - `orders.customer.last_name` (string) - `orders.customer.email` (string) - `orders.customer.phone` (string) - `orders.customer.address` (string) - `orders.customer.city` (string) - `orders.customer.state` (string) - `orders.customer.country_id` (string) - `orders.customer.zip_code` (string) - `orders.customer.id_number` (string) - `orders.customer.document_label` (string) - `orders.order_items` (array) - `orders.order_items.quantity` (integer) - `orders.order_items.unit_price` (string) - `orders.order_items.title` (string) - `orders.order_items.sku` (string) - `orders.order_items.image_url` (any) - `total_pages` (integer) ## Response 400 fields ## Response 401 fields