# Orders

## GET /orders/benefit-applicants/

> This method indicates the relationship between order items and discounts, showing which discount is applied to each order item by returning the IDs of the order items and their associated discount records.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"PaginatedOrderBenefitApplicantList":{"properties":{"count":{"description":"Numerical value representing quantity or total amount.","type":"integer"},"next":{"description":"This field defines the URL of the next page.","format":"uri","nullable":true,"type":"string"},"previous":{"description":"This field defines the URL of the previous page.","format":"uri","nullable":true,"type":"string"},"results":{"description":"This field returns a list of results.","items":{"$ref":"#/components/schemas/OrderBenefitApplicant"},"type":"array"}},"type":"object"},"OrderBenefitApplicant":{"properties":{"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"discount_item":{"description":"Numerical value representing quantity or total amount.","type":"integer"},"id":{"description":"Unique identifier for the record.","type":"integer"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"order_item":{"description":"The field defines the associated order item id.","type":"integer"}},"type":"object"}}},"paths":{"/orders/benefit-applicants/":{"get":{"description":"This method indicates the relationship between order items and discounts, showing which discount is applied to each order item by returning the IDs of the order items and their associated discount records.","operationId":"orders_benefit_applicants_list","parameters":[{"description":"Query parameter `created_date` used to filter results based on specific conditions.","in":"query","name":"created_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `discount_item` used to filter results based on specific conditions.","in":"query","name":"discount_item","schema":{"type":"integer"}},{"description":"Query parameter `id` used to filter results based on specific conditions.","in":"query","name":"id","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than the given value.","in":"query","name":"id__gt","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than or equal to the given value.","in":"query","name":"id__gte","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than the given value.","in":"query","name":"id__lt","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than or equal to the given value.","in":"query","name":"id__lte","schema":{"type":"integer"}},{"description":"Limits the number of results returned in the response.","in":"query","name":"limit","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `modified_date` used to filter results based on specific conditions.","in":"query","name":"modified_date","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than the given value.","in":"query","name":"modified_date__gt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than or equal to the given value.","in":"query","name":"modified_date__gte","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than the given value.","in":"query","name":"modified_date__lt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than or equal to the given value.","in":"query","name":"modified_date__lte","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `order_item` used to filter results based on specific conditions.","in":"query","name":"order_item","schema":{"type":"integer"}},{"description":"Query parameter `page` used to filter results based on specific conditions.","in":"query","name":"page","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `sort` used to filter results based on specific conditions.","in":"query","name":"sort","required":false,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedOrderBenefitApplicantList"}}},"description":"Successful response for status code 200."}},"tags":["orders"]}}}}
```

## GET /orders/benefit-applicants/{id}/

> This method indicates the relationship between order items and discounts, showing which discount is applied to each order item by returning the IDs of the order items and their associated discount records. This endpoint retrieves a specific record by its unique identifier.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"OrderBenefitApplicant":{"properties":{"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"discount_item":{"description":"Numerical value representing quantity or total amount.","type":"integer"},"id":{"description":"Unique identifier for the record.","type":"integer"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"order_item":{"description":"The field defines the associated order item id.","type":"integer"}},"type":"object"}}},"paths":{"/orders/benefit-applicants/{id}/":{"get":{"description":"This method indicates the relationship between order items and discounts, showing which discount is applied to each order item by returning the IDs of the order items and their associated discount records. This endpoint retrieves a specific record by its unique identifier.","operationId":"orders_benefit_applicants_retrieve","parameters":[{"description":"A unique integer value identifying this benefit applicant.","in":"path","name":"id","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderBenefitApplicant"}}},"description":"Successful response for status code 200."},"404":{"content":{"application/json":{}},"description":"Object not found."}},"tags":["orders"]}}}}
```

## GET /orders/discount-items/

> This method retrieves data about discounts applied to orders, including details such as discount amounts, related offers, and conditions.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"PaginatedOrderDiscountItemList":{"properties":{"count":{"description":"Numerical value representing quantity or total amount.","type":"integer"},"next":{"description":"This field defines the URL of the next page.","format":"uri","nullable":true,"type":"string"},"previous":{"description":"This field defines the URL of the previous page.","format":"uri","nullable":true,"type":"string"},"results":{"description":"This field returns a list of results.","items":{"$ref":"#/components/schemas/OrderDiscountItem"},"type":"array"}},"type":"object"},"OrderDiscountItem":{"properties":{"amount":{"description":"The field defines the total amount of the loyalty transaction.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Total discount","type":"string"},"cancel_amount":{"description":"The field defines the refunded amount of the discount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Cancel discount","type":"string"},"conditional_offer":{"description":"The field defines the associated condition offer ID.","nullable":true,"type":"integer"},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"data":{"description":"The field defines the data related to the discount item.","nullable":true},"data_source_discount_sharing_rate":{"description":"Numerical value representing quantity or total amount.","format":"decimal","nullable":true,"pattern":"^-?\\d{0,3}(?:\\.\\d{0,2})?$","type":"string"},"id":{"description":"Unique identifier for the record.","type":"integer"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"name":{"description":"The full name or label associated with the record.","maxLength":1024,"title":"Discount Name","type":"string"},"order":{"description":"The field defines the order of the category node.","type":"integer"},"session_offer":{"description":"The field defines the associated condition offer ID.","nullable":true,"type":"integer"}},"type":"object"}}},"paths":{"/orders/discount-items/":{"get":{"description":"This method retrieves data about discounts applied to orders, including details such as discount amounts, related offers, and conditions.","operationId":"orders_discount_items_list","parameters":[{"description":"Query parameter `amount` used to filter results based on specific conditions.","in":"query","name":"amount","schema":{"type":"number"}},{"description":"Query parameter `cancel_amount` used to filter results based on specific conditions.","in":"query","name":"cancel_amount","schema":{"type":"number"}},{"description":"Query parameter `conditional_offer` used to filter results based on specific conditions.","in":"query","name":"conditional_offer","schema":{"type":"integer"}},{"description":"Query parameter `created_date` used to filter results based on specific conditions.","in":"query","name":"created_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `data` used to filter results based on specific conditions.","in":"query","name":"data","schema":{"nullable":true}},{"description":"Query parameter `data_source_discount_sharing_rate` used to filter results based on specific conditions.","in":"query","name":"data_source_discount_sharing_rate","schema":{"type":"number"}},{"description":"Query parameter `id` used to filter results based on specific conditions.","in":"query","name":"id","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than the given value.","in":"query","name":"id__gt","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than or equal to the given value.","in":"query","name":"id__gte","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than the given value.","in":"query","name":"id__lt","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than or equal to the given value.","in":"query","name":"id__lte","schema":{"type":"integer"}},{"description":"Limits the number of results returned in the response.","in":"query","name":"limit","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `modified_date` used to filter results based on specific conditions.","in":"query","name":"modified_date","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than the given value.","in":"query","name":"modified_date__gt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than or equal to the given value.","in":"query","name":"modified_date__gte","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than the given value.","in":"query","name":"modified_date__lt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than or equal to the given value.","in":"query","name":"modified_date__lte","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `name` used to filter results based on specific conditions.","in":"query","name":"name","schema":{"type":"string"}},{"description":"Query parameter `order` used to filter results based on specific conditions.","in":"query","name":"order","schema":{"type":"integer"}},{"description":"Query parameter `page` used to filter results based on specific conditions.","in":"query","name":"page","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `session_offer` used to filter results based on specific conditions.","in":"query","name":"session_offer","schema":{"type":"integer"}},{"description":"Query parameter `sort` used to filter results based on specific conditions.","in":"query","name":"sort","required":false,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedOrderDiscountItemList"}}},"description":"Successful response for status code 200."}},"tags":["orders"]}}}}
```

## GET /orders/discount-items/{id}/

> This method retrieves data about discounts applied to orders, including details such as discount amounts, related offers, and conditions. This endpoint retrieves a specific record by its unique identifier.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"OrderDiscountItem":{"properties":{"amount":{"description":"The field defines the total amount of the loyalty transaction.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Total discount","type":"string"},"cancel_amount":{"description":"The field defines the refunded amount of the discount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Cancel discount","type":"string"},"conditional_offer":{"description":"The field defines the associated condition offer ID.","nullable":true,"type":"integer"},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"data":{"description":"The field defines the data related to the discount item.","nullable":true},"data_source_discount_sharing_rate":{"description":"Numerical value representing quantity or total amount.","format":"decimal","nullable":true,"pattern":"^-?\\d{0,3}(?:\\.\\d{0,2})?$","type":"string"},"id":{"description":"Unique identifier for the record.","type":"integer"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"name":{"description":"The full name or label associated with the record.","maxLength":1024,"title":"Discount Name","type":"string"},"order":{"description":"The field defines the order of the category node.","type":"integer"},"session_offer":{"description":"The field defines the associated condition offer ID.","nullable":true,"type":"integer"}},"type":"object"}}},"paths":{"/orders/discount-items/{id}/":{"get":{"description":"This method retrieves data about discounts applied to orders, including details such as discount amounts, related offers, and conditions. This endpoint retrieves a specific record by its unique identifier.","operationId":"orders_discount_items_retrieve","parameters":[{"description":"A unique integer value identifying this discount item.","in":"path","name":"id","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderDiscountItem"}}},"description":"Successful response for status code 200."},"404":{"content":{"application/json":{}},"description":"Object not found."}},"tags":["orders"]}}}}
```

## GET /orders/order-items/

> Retrieves information about items included in orders, showing product identifiers, pricing, and status details.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"PaginatedOrderItemList":{"properties":{"count":{"description":"Numerical value representing quantity or total amount.","type":"integer"},"next":{"description":"This field defines the URL of the next page.","format":"uri","nullable":true,"type":"string"},"previous":{"description":"This field defines the URL of the previous page.","format":"uri","nullable":true,"type":"string"},"results":{"description":"This field returns a list of results.","items":{"$ref":"#/components/schemas/OrderItem"},"type":"array"}},"type":"object"},"OrderItem":{"properties":{"attributes":{"description":"The field defines the attributes of the category node.","nullable":true},"attributes_kwargs":{"description":"The field defines the details of the category node.","nullable":true},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"datasource":{"description":"The field defines the ID that indicates which seller the item belongs to.","nullable":true,"type":"integer"},"defined_shipping_company":{"maxLength":32,"nullable":true,"type":"string"},"defined_tracking_url":{"description":"The field defines the custom tracking URL for the order item.","format":"uri","maxLength":512,"nullable":true,"type":"string"},"delivered_date":{"format":"date-time","nullable":true,"type":"string"},"e_archive_url":{"description":"The field defines the e-archive URL for the order item.","format":"uri","maxLength":1024,"nullable":true,"title":"E-Archive","type":"string"},"estimated_delivery_date":{"description":"The field defines the estimated delivery date for the order item.","format":"date","nullable":true,"type":"string"},"extra_field":{"description":"The field defines additional fields or attributes related to the product.","nullable":true},"extra_product_price":{"description":"The field defines the ID of the extra product price associated with the product. If not specified, the default price applies.","nullable":true,"type":"integer"},"extra_product_stock":{"description":"The field defines the ID of the extra product stock associated with the product. If not specified, the default stock applies.","nullable":true,"type":"integer"},"id":{"description":"Unique identifier for the record.","type":"integer"},"image":{"description":"This field defines the URL or path to the product's image.","format":"uri","nullable":true,"type":"string"},"invoice_date":{"description":"The field defines the invoice date for the order item.","format":"date-time","nullable":true,"type":"string"},"invoice_number":{"description":"The field defines the invoice number for the order item.","maxLength":32,"nullable":true,"type":"string"},"localized_attributes":{"description":"The field defines the category node that has been translated into other languages.","nullable":true},"localized_attributes_kwargs":{"description":"The field defines the details of the translations for the category node attributes.","nullable":true},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"order":{"description":"The field defines the order of the category node.","title":"Sıralama","type":"integer"},"parent":{"description":"The field defines the ID of the associated basket item, if there is a related basket item.","nullable":true,"type":"integer"},"price":{"description":"The field defines the actual price of the product.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"price_currency":{"$ref":"#/components/schemas/PriceCurrencyEnum","description":"The field defines the price currency for the order item."},"product":{"description":"The field defines the product ID associated with the product price.","type":"integer"},"retail_price":{"description":"The field defines the retail price of the product.","format":"decimal","nullable":true,"pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"shipped_date":{"format":"date-time","nullable":true,"type":"string"},"shipping_company":{"$ref":"#/components/schemas/ShippingCompanyEnum","description":"The field defines the shipping company for the order item."},"shipping_option_group":{"description":"The field defines the shipping option group to which the order item belongs.","nullable":true,"type":"integer"},"shipping_tracking_url":{"description":"The field defines the shipping tracking URL for the order item.","format":"uri","maxLength":500,"nullable":true,"type":"string"},"status":{"$ref":"#/components/schemas/StatusC57Enum","description":"Current status of the record (e.g., active, inactive)."},"tax_rate":{"description":"The field defines the tax rate applied to the product.","format":"decimal","pattern":"^-?\\d{0,3}(?:\\.\\d{0,2})?$","type":"string"},"tracking_number":{"description":"The field defines the tracking number for the order item.","maxLength":256,"nullable":true,"type":"string"}},"type":"object"},"PriceCurrencyEnum":{"description":"* `try` - TL\n* `eur` - EUR\n* `usd` - USD\n* `egp` - EGP\n* `gbp` - GBP\n* `mad` - MAD\n* `pln` - PLN\n* `sar` - SAR\n* `ron` - RON\n* `uah` - UAH\n* `czk` - CZK\n* `huf` - HUF\n* `rub` - RUB\n* `bgn` - BGN\n* `iqd` - IQD\n* `kwd` - KWD\n* `bhd` - BHD\n* `omr` - OMR\n* `qar` - QAR\n* `aed` - AED\n* `ngn` - NGN\n* `inr` - INR\n* `lei` - LEI\n* `kzt` - KZT\n* `jod` - JOD\n* `rsd` - RSD","enum":["try","eur","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"],"type":"string"},"ShippingCompanyEnum":{"description":"* `aras` - Aras Kargo\n* `ups` - UPS\n* `asil` - Asil Kargo\n* `yurtici` - Yurtiçi Kargo\n* `mng` - MNG Kargo\n* `hbexpress` - Hepsi Express\n* `aramex` - Aramex\n* `other` - Other\n* `ismail` - Is-Mail Kargo\n* `gls` - GLS Logistic\n* `hoopkapida` - Hoopkapida Kargo\n* `fancourier` - Fan Courier\n* `tmmexpress` - TMM Express\n* `ptt` - Ptt\n* `horoz` - Horoz\n* `novaposhta` - Nova Poshta\n* `droplight` - DropLight\n* `surat` - Sürat Kargo\n* `ups_intl` - UPS International\n* `b2c_direct` - B2C Direct\n* `jetizz` - Jetizz\n* `tyexpress` - Tyexpress\n* `ay_cargo` - Ay Kargo\n* `cainiao` - Cainiao\n* `acs` - ACS Kargo\n* `packupp` - Packupp\n* `k_gelsin` - Kolay Gelsin\n* `birgunde` - Bir Günde Kargo\n* `kargo_ist` - Kargo İstanbul\n* `giz` - Giz\n* `mylerz` - Mylerz Cargo\n* `mylerzsdd` - Mylerz Same Day Delivery\n* `r2s` - R2S Cargo\n* `boomex` - Boomex\n* `chrono` - Chrono Diali Courier\n* `scotty` - Scotty Cargo\n* `netkargo` - NetKargo\n* `murat_lgc` - Murat Lojistik\n* `fast_cargo` - Fast Cargo\n* `dpd` - DPD Cargo\n* `in_post` - In Post\n* `k_sende` - Kargom Sende\n* `rupost` - Ru Post\n* `cdek` - Cdek\n* `loomis` - Loomis\n* `carrtell` - Cartell\n* `speeta` - Speeta\n* `bringo` - Bringo\n* `dhlexpress` - DHL Express\n* `bovo` - Bovo\n* `gelal` - Gelal\n* `arvato` - Arvato\n* `bpost_athome` - Bpost athome\n* `bpost_24_7` - Bpost 24/7\n* `cathedis` - Cathedis\n* `dincer` - Dinçer Lojistik\n* `sameday` - Sameday Easybox\n* `gkn` - GKN Kargo\n* `svuum` - Svuum Cargo\n* `hjetxl` - Hepsi Jet XL\n* `aramex_express` - Aramex Express\n* `tnt_cargo` - TNT Cargo\n* `ceva_cargo` - Ceva Cargo\n* `bringo_express` - Bringo Express\n* `sendeo` - Sendeo Cargo\n* `cargus` - Cargus\n* `pinkpost` - PinkPost\n* `speedy` - Speedy Cargo\n* `deliverigo` - Deliverigo\n* `jetizz_v7` - Jetizz v7\n* `evdemo_lojistik` - Evdemo Lojistik\n* `extension` - Extension Cargo\n* `apiship` - ApiShip\n* `octovan_express` - Octovan Express\n* `clickpost` - Clickpost\n* `iMile` - iMile Delivery\n* `jetlogi` - Jetlogi\n* `bolt` - Bolt Kargo\n* `pony_express` - Pony Express\n* `boxaty` - Boxaty\n* `monist` - Monist\n* `city_express` - City Express\n* `fero_ai` - Fero AI\n* `carriyo` - Carriyo\n* `pakettaxi` - Paket Taxi\n* `falcon_flex` - Falcon Flex\n* `porter_express` - Porter Express\n* `sky_express` - Sky Express\n* `pts_express` - PTS Worldwide Express\n* `bpost_pickup` - Bpost Pickup\n* `shipx` - ShipX\n* `fareye` - FarEye","enum":["aras","ups","asil","yurtici","mng","hbexpress","aramex","other","ismail","gls","hoopkapida","fancourier","tmmexpress","ptt","horoz","novaposhta","droplight","surat","ups_intl","b2c_direct","jetizz","tyexpress","ay_cargo","cainiao","acs","packupp","k_gelsin","birgunde","kargo_ist","giz","mylerz","mylerzsdd","r2s","boomex","chrono","scotty","netkargo","murat_lgc","fast_cargo","dpd","in_post","k_sende","rupost","cdek","loomis","carrtell","speeta","bringo","dhlexpress","bovo","gelal","arvato","bpost_athome","bpost_24_7","cathedis","dincer","sameday","gkn","svuum","hjetxl","aramex_express","tnt_cargo","ceva_cargo","bringo_express","sendeo","cargus","pinkpost","speedy","deliverigo","jetizz_v7","evdemo_lojistik","extension","apiship","octovan_express","clickpost","iMile","jetlogi","bolt","pony_express","boxaty","monist","city_express","fero_ai","carriyo","pakettaxi","falcon_flex","porter_express","sky_express","pts_express","bpost_pickup","shipx","fareye"],"type":"string"},"StatusC57Enum":{"description":"* `50` - cancellation waiting\n* `100` - cancelled\n* `200` - waiting\n* `300` - payment_waiting\n* `350` - confirmation waiting\n* `400` - approved\n* `450` - preparing\n* `500` - shipped\n* `510` - shipped_and_informed\n* `520` - ready for pickup\n* `540` - attempted_delivery\n* `544` - review_started\n* `545` - review_waiting\n* `546` - waiting_for_payment\n* `547` - paid\n* `550` - delivered\n* `600` - refunded","enum":["50","100","200","300","350","400","450","500","510","520","540","544","545","546","547","550","600"],"type":"string"}}},"paths":{"/orders/order-items/":{"get":{"description":"Retrieves information about items included in orders, showing product identifiers, pricing, and status details.","operationId":"orders_order_items_list","parameters":[{"description":"Query parameter `attributes` used to filter results based on specific conditions.","in":"query","name":"attributes","schema":{"nullable":true}},{"description":"Query parameter `attributes_kwargs` used to filter results based on specific conditions.","in":"query","name":"attributes_kwargs","schema":{"nullable":true}},{"description":"Query parameter `created_date` used to filter results based on specific conditions.","in":"query","name":"created_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `datasource` used to filter results based on specific conditions.","in":"query","name":"datasource","schema":{"type":"integer"}},{"description":"Query parameter `defined_shipping_company` used to filter results based on specific conditions.","in":"query","name":"defined_shipping_company","schema":{"type":"string"}},{"description":"Query parameter `defined_tracking_url` used to filter results based on specific conditions.","in":"query","name":"defined_tracking_url","schema":{"type":"string"}},{"description":"Query parameter `delivered_date` used to filter results based on specific conditions.","in":"query","name":"delivered_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `e_archive_url` used to filter results based on specific conditions.","in":"query","name":"e_archive_url","schema":{"type":"string"}},{"description":"Query parameter `estimated_delivery_date` used to filter results based on specific conditions.","in":"query","name":"estimated_delivery_date","schema":{"format":"date","type":"string"}},{"description":"Query parameter `extra_field` used to filter results based on specific conditions.","in":"query","name":"extra_field","schema":{"nullable":true}},{"description":"Query parameter `extra_product_price` used to filter results based on specific conditions.","in":"query","name":"extra_product_price","schema":{"type":"integer"}},{"description":"Query parameter `extra_product_stock` used to filter results based on specific conditions.","in":"query","name":"extra_product_stock","schema":{"type":"integer"}},{"description":"Query parameter `id` used to filter results based on specific conditions.","in":"query","name":"id","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than the given value.","in":"query","name":"id__gt","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than or equal to the given value.","in":"query","name":"id__gte","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than the given value.","in":"query","name":"id__lt","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than or equal to the given value.","in":"query","name":"id__lte","schema":{"type":"integer"}},{"description":"Query parameter `image` used to filter results based on specific conditions.","in":"query","name":"image","schema":{"type":"string"}},{"description":"Query parameter `invoice_date` used to filter results based on specific conditions.","in":"query","name":"invoice_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `invoice_number` used to filter results based on specific conditions.","in":"query","name":"invoice_number","schema":{"type":"string"}},{"description":"Limits the number of results returned in the response.","in":"query","name":"limit","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `localized_attributes` used to filter results based on specific conditions.","in":"query","name":"localized_attributes","schema":{"nullable":true}},{"description":"Query parameter `localized_attributes_kwargs` used to filter results based on specific conditions.","in":"query","name":"localized_attributes_kwargs","schema":{"nullable":true}},{"description":"Query parameter `modified_date` used to filter results based on specific conditions.","in":"query","name":"modified_date","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than the given value.","in":"query","name":"modified_date__gt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than or equal to the given value.","in":"query","name":"modified_date__gte","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than the given value.","in":"query","name":"modified_date__lt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than or equal to the given value.","in":"query","name":"modified_date__lte","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `order` used to filter results based on specific conditions.","in":"query","name":"order","schema":{"type":"integer"}},{"description":"Query parameter `page` used to filter results based on specific conditions.","in":"query","name":"page","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `parent` used to filter results based on specific conditions.","in":"query","name":"parent","schema":{"type":"integer"}},{"description":"Query parameter `price` used to filter results based on specific conditions.","in":"query","name":"price","schema":{"type":"number"}},{"description":"Query parameter `price_currency` used to filter results based on specific conditions.","in":"query","name":"price_currency","schema":{"type":"string"}},{"description":"Query parameter `product` used to filter results based on specific conditions.","in":"query","name":"product","schema":{"type":"integer"}},{"description":"Query parameter `retail_price` used to filter results based on specific conditions.","in":"query","name":"retail_price","schema":{"type":"number"}},{"description":"Query parameter `shipped_date` used to filter results based on specific conditions.","in":"query","name":"shipped_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `shipping_company` used to filter results based on specific conditions.","in":"query","name":"shipping_company","schema":{"type":"string"}},{"description":"Query parameter `shipping_option_group` used to filter results based on specific conditions.","in":"query","name":"shipping_option_group","schema":{"type":"integer"}},{"description":"Query parameter `shipping_tracking_url` used to filter results based on specific conditions.","in":"query","name":"shipping_tracking_url","schema":{"type":"string"}},{"description":"Query parameter `sort` used to filter results based on specific conditions.","in":"query","name":"sort","required":false,"schema":{"type":"string"}},{"description":"Query parameter `status` used to filter results based on specific conditions.","in":"query","name":"status","schema":{"type":"string"}},{"description":"Query parameter `tax_rate` used to filter results based on specific conditions.","in":"query","name":"tax_rate","schema":{"type":"number"}},{"description":"Query parameter `tracking_number` used to filter results based on specific conditions.","in":"query","name":"tracking_number","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedOrderItemList"}}},"description":"Successful response for status code 200."}},"tags":["orders"]}}}}
```

## GET /orders/order-items/{id}/

> Retrieves information about items included in orders, showing product identifiers, pricing, and status details. This endpoint retrieves a specific record by its unique identifier.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"OrderItem":{"properties":{"attributes":{"description":"The field defines the attributes of the category node.","nullable":true},"attributes_kwargs":{"description":"The field defines the details of the category node.","nullable":true},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"datasource":{"description":"The field defines the ID that indicates which seller the item belongs to.","nullable":true,"type":"integer"},"defined_shipping_company":{"maxLength":32,"nullable":true,"type":"string"},"defined_tracking_url":{"description":"The field defines the custom tracking URL for the order item.","format":"uri","maxLength":512,"nullable":true,"type":"string"},"delivered_date":{"format":"date-time","nullable":true,"type":"string"},"e_archive_url":{"description":"The field defines the e-archive URL for the order item.","format":"uri","maxLength":1024,"nullable":true,"title":"E-Archive","type":"string"},"estimated_delivery_date":{"description":"The field defines the estimated delivery date for the order item.","format":"date","nullable":true,"type":"string"},"extra_field":{"description":"The field defines additional fields or attributes related to the product.","nullable":true},"extra_product_price":{"description":"The field defines the ID of the extra product price associated with the product. If not specified, the default price applies.","nullable":true,"type":"integer"},"extra_product_stock":{"description":"The field defines the ID of the extra product stock associated with the product. If not specified, the default stock applies.","nullable":true,"type":"integer"},"id":{"description":"Unique identifier for the record.","type":"integer"},"image":{"description":"This field defines the URL or path to the product's image.","format":"uri","nullable":true,"type":"string"},"invoice_date":{"description":"The field defines the invoice date for the order item.","format":"date-time","nullable":true,"type":"string"},"invoice_number":{"description":"The field defines the invoice number for the order item.","maxLength":32,"nullable":true,"type":"string"},"localized_attributes":{"description":"The field defines the category node that has been translated into other languages.","nullable":true},"localized_attributes_kwargs":{"description":"The field defines the details of the translations for the category node attributes.","nullable":true},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"order":{"description":"The field defines the order of the category node.","title":"Sıralama","type":"integer"},"parent":{"description":"The field defines the ID of the associated basket item, if there is a related basket item.","nullable":true,"type":"integer"},"price":{"description":"The field defines the actual price of the product.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"price_currency":{"$ref":"#/components/schemas/PriceCurrencyEnum","description":"The field defines the price currency for the order item."},"product":{"description":"The field defines the product ID associated with the product price.","type":"integer"},"retail_price":{"description":"The field defines the retail price of the product.","format":"decimal","nullable":true,"pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"shipped_date":{"format":"date-time","nullable":true,"type":"string"},"shipping_company":{"$ref":"#/components/schemas/ShippingCompanyEnum","description":"The field defines the shipping company for the order item."},"shipping_option_group":{"description":"The field defines the shipping option group to which the order item belongs.","nullable":true,"type":"integer"},"shipping_tracking_url":{"description":"The field defines the shipping tracking URL for the order item.","format":"uri","maxLength":500,"nullable":true,"type":"string"},"status":{"$ref":"#/components/schemas/StatusC57Enum","description":"Current status of the record (e.g., active, inactive)."},"tax_rate":{"description":"The field defines the tax rate applied to the product.","format":"decimal","pattern":"^-?\\d{0,3}(?:\\.\\d{0,2})?$","type":"string"},"tracking_number":{"description":"The field defines the tracking number for the order item.","maxLength":256,"nullable":true,"type":"string"}},"type":"object"},"PriceCurrencyEnum":{"description":"* `try` - TL\n* `eur` - EUR\n* `usd` - USD\n* `egp` - EGP\n* `gbp` - GBP\n* `mad` - MAD\n* `pln` - PLN\n* `sar` - SAR\n* `ron` - RON\n* `uah` - UAH\n* `czk` - CZK\n* `huf` - HUF\n* `rub` - RUB\n* `bgn` - BGN\n* `iqd` - IQD\n* `kwd` - KWD\n* `bhd` - BHD\n* `omr` - OMR\n* `qar` - QAR\n* `aed` - AED\n* `ngn` - NGN\n* `inr` - INR\n* `lei` - LEI\n* `kzt` - KZT\n* `jod` - JOD\n* `rsd` - RSD","enum":["try","eur","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"],"type":"string"},"ShippingCompanyEnum":{"description":"* `aras` - Aras Kargo\n* `ups` - UPS\n* `asil` - Asil Kargo\n* `yurtici` - Yurtiçi Kargo\n* `mng` - MNG Kargo\n* `hbexpress` - Hepsi Express\n* `aramex` - Aramex\n* `other` - Other\n* `ismail` - Is-Mail Kargo\n* `gls` - GLS Logistic\n* `hoopkapida` - Hoopkapida Kargo\n* `fancourier` - Fan Courier\n* `tmmexpress` - TMM Express\n* `ptt` - Ptt\n* `horoz` - Horoz\n* `novaposhta` - Nova Poshta\n* `droplight` - DropLight\n* `surat` - Sürat Kargo\n* `ups_intl` - UPS International\n* `b2c_direct` - B2C Direct\n* `jetizz` - Jetizz\n* `tyexpress` - Tyexpress\n* `ay_cargo` - Ay Kargo\n* `cainiao` - Cainiao\n* `acs` - ACS Kargo\n* `packupp` - Packupp\n* `k_gelsin` - Kolay Gelsin\n* `birgunde` - Bir Günde Kargo\n* `kargo_ist` - Kargo İstanbul\n* `giz` - Giz\n* `mylerz` - Mylerz Cargo\n* `mylerzsdd` - Mylerz Same Day Delivery\n* `r2s` - R2S Cargo\n* `boomex` - Boomex\n* `chrono` - Chrono Diali Courier\n* `scotty` - Scotty Cargo\n* `netkargo` - NetKargo\n* `murat_lgc` - Murat Lojistik\n* `fast_cargo` - Fast Cargo\n* `dpd` - DPD Cargo\n* `in_post` - In Post\n* `k_sende` - Kargom Sende\n* `rupost` - Ru Post\n* `cdek` - Cdek\n* `loomis` - Loomis\n* `carrtell` - Cartell\n* `speeta` - Speeta\n* `bringo` - Bringo\n* `dhlexpress` - DHL Express\n* `bovo` - Bovo\n* `gelal` - Gelal\n* `arvato` - Arvato\n* `bpost_athome` - Bpost athome\n* `bpost_24_7` - Bpost 24/7\n* `cathedis` - Cathedis\n* `dincer` - Dinçer Lojistik\n* `sameday` - Sameday Easybox\n* `gkn` - GKN Kargo\n* `svuum` - Svuum Cargo\n* `hjetxl` - Hepsi Jet XL\n* `aramex_express` - Aramex Express\n* `tnt_cargo` - TNT Cargo\n* `ceva_cargo` - Ceva Cargo\n* `bringo_express` - Bringo Express\n* `sendeo` - Sendeo Cargo\n* `cargus` - Cargus\n* `pinkpost` - PinkPost\n* `speedy` - Speedy Cargo\n* `deliverigo` - Deliverigo\n* `jetizz_v7` - Jetizz v7\n* `evdemo_lojistik` - Evdemo Lojistik\n* `extension` - Extension Cargo\n* `apiship` - ApiShip\n* `octovan_express` - Octovan Express\n* `clickpost` - Clickpost\n* `iMile` - iMile Delivery\n* `jetlogi` - Jetlogi\n* `bolt` - Bolt Kargo\n* `pony_express` - Pony Express\n* `boxaty` - Boxaty\n* `monist` - Monist\n* `city_express` - City Express\n* `fero_ai` - Fero AI\n* `carriyo` - Carriyo\n* `pakettaxi` - Paket Taxi\n* `falcon_flex` - Falcon Flex\n* `porter_express` - Porter Express\n* `sky_express` - Sky Express\n* `pts_express` - PTS Worldwide Express\n* `bpost_pickup` - Bpost Pickup\n* `shipx` - ShipX\n* `fareye` - FarEye","enum":["aras","ups","asil","yurtici","mng","hbexpress","aramex","other","ismail","gls","hoopkapida","fancourier","tmmexpress","ptt","horoz","novaposhta","droplight","surat","ups_intl","b2c_direct","jetizz","tyexpress","ay_cargo","cainiao","acs","packupp","k_gelsin","birgunde","kargo_ist","giz","mylerz","mylerzsdd","r2s","boomex","chrono","scotty","netkargo","murat_lgc","fast_cargo","dpd","in_post","k_sende","rupost","cdek","loomis","carrtell","speeta","bringo","dhlexpress","bovo","gelal","arvato","bpost_athome","bpost_24_7","cathedis","dincer","sameday","gkn","svuum","hjetxl","aramex_express","tnt_cargo","ceva_cargo","bringo_express","sendeo","cargus","pinkpost","speedy","deliverigo","jetizz_v7","evdemo_lojistik","extension","apiship","octovan_express","clickpost","iMile","jetlogi","bolt","pony_express","boxaty","monist","city_express","fero_ai","carriyo","pakettaxi","falcon_flex","porter_express","sky_express","pts_express","bpost_pickup","shipx","fareye"],"type":"string"},"StatusC57Enum":{"description":"* `50` - cancellation waiting\n* `100` - cancelled\n* `200` - waiting\n* `300` - payment_waiting\n* `350` - confirmation waiting\n* `400` - approved\n* `450` - preparing\n* `500` - shipped\n* `510` - shipped_and_informed\n* `520` - ready for pickup\n* `540` - attempted_delivery\n* `544` - review_started\n* `545` - review_waiting\n* `546` - waiting_for_payment\n* `547` - paid\n* `550` - delivered\n* `600` - refunded","enum":["50","100","200","300","350","400","450","500","510","520","540","544","545","546","547","550","600"],"type":"string"}}},"paths":{"/orders/order-items/{id}/":{"get":{"description":"Retrieves information about items included in orders, showing product identifiers, pricing, and status details. This endpoint retrieves a specific record by its unique identifier.","operationId":"orders_order_items_retrieve","parameters":[{"description":"A unique integer value identifying this order item.","in":"path","name":"id","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderItem"}}},"description":"Successful response for status code 200."},"404":{"content":{"application/json":{}},"description":"Object not found."}},"tags":["orders"]}}}}
```

## GET /orders/orders/

> Fetches order-related data, detailing financial amounts, order statuses, customer information, and various logistical details surrounding order handling.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"PaginatedOrderList":{"properties":{"count":{"description":"Numerical value representing quantity or total amount.","type":"integer"},"next":{"description":"This field defines the URL of the next page.","format":"uri","nullable":true,"type":"string"},"previous":{"description":"This field defines the URL of the previous page.","format":"uri","nullable":true,"type":"string"},"results":{"description":"This field returns a list of results.","items":{"$ref":"#/components/schemas/Order"},"type":"array"}},"type":"object"},"Order":{"properties":{"amount":{"description":"This field defines the order amount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Order amount","type":"string"},"basket":{"description":"This field defines the basket ID associated with the order.","nullable":true,"type":"integer"},"billing_address":{"description":"Physical or electronic address details.","nullable":true,"type":"integer"},"bin_number":{"description":"This field defines the BIN (Bank Identification Number) of the credit card if payment was made by credit card.","maxLength":8,"nullable":true,"type":"string"},"card":{"description":"This field defines the Card ID stored in the database, associated with the BIN number and POS, if the payment was made by credit card.","nullable":true,"type":"integer"},"checkout_provider":{"description":"This field defines the provider ID if the order was placed through a checkout provider.","nullable":true,"type":"integer"},"client_type":{"$ref":"#/components/schemas/ClientTypeEnum","description":"The classification or type related to this field."},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"currency":{"$ref":"#/components/schemas/CurrencyEnum","description":"This field defines the currency used for the payment."},"defined_tracking_url":{"description":"This field defines the customized tracking URL.","format":"uri","maxLength":512,"nullable":true,"type":"string"},"delivery_range":{"additionalProperties":{"format":"date-time","type":"string"},"description":"This field defines the estimated delivery time range for the order.","nullable":true,"type":"object"},"discount_amount":{"description":"Numerical value representing quantity or total amount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Discount","type":"string"},"discount_refund_amount":{"description":"Numerical value representing quantity or total amount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Discount","type":"string"},"e_archive_url":{"description":"This field defines the e-invoice URL.","format":"uri","maxLength":1024,"nullable":true,"title":"E-Archive","type":"string"},"extra_field":{"description":"This field defines an additional field required for the order if necessary.","nullable":true},"gift_box_note":{"description":"This field defines the note for the gift box.","maxLength":160,"nullable":true,"type":"string"},"has_gift_box":{"description":"Boolean flag indicating whether the condition is met.","nullable":true,"type":"boolean"},"id":{"description":"Unique identifier for the record.","type":"integer"},"installment":{"description":"This field defines the Installment database ID associated with the card.","nullable":true,"type":"integer"},"installment_count":{"description":"Numerical value representing quantity or total amount.","maximum":2147483647,"minimum":0,"type":"integer"},"installment_interest_amount":{"description":"This field defines the total interest applied for installment payments.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"invoice_date":{"description":"This field defines the invoice date.","format":"date-time","nullable":true,"type":"string"},"invoice_number":{"description":"This field defines the invoice number.","maxLength":32,"nullable":true,"type":"string"},"language_code":{"description":"This field defines the language associated with the order.","maxLength":256,"nullable":true,"type":"string"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"notes":{"description":"This field defines the note related to the order.","maxLength":320,"nullable":true,"title":"Instructions","type":"string"},"number":{"description":"This field defines the unique order number.","maxLength":128,"title":"Order number","type":"string"},"payment_option":{"description":"This field defines the ID of the selected payment option.","type":"integer"},"payment_option_slug":{"description":"This field defines the slug information for the selected payment option.","maxLength":128,"pattern":"^[-a-zA-Z0-9_]+$","type":"string"},"refund_amount":{"description":"This field defines the amount that has been returned.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Order refund amount","type":"string"},"remote_addr":{"description":"This field defines the IP address from which the order was placed.","nullable":true,"type":"string"},"segment":{"description":"This field defines the segment ID information to which the user is associated, if applicable.","nullable":true,"type":"integer"},"shipping_address":{"description":"Physical or electronic address details.","nullable":true,"type":"integer"},"shipping_amount":{"description":"This field defines the shipping fee.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Shipping charge","type":"string"},"shipping_company":{"$ref":"#/components/schemas/ShippingCompanyEnum","description":"This field defines the shipping company responsible for delivering the order."},"shipping_option":{"description":"This field defines the ID of the selected shipping option.","type":"integer"},"shipping_option_slug":{"description":"This field defines the slug information for the selected shipping option.","maxLength":128,"pattern":"^[-a-zA-Z0-9_]+$","type":"string"},"shipping_refund_amount":{"description":"This field defines the refunded shipping fee.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"shipping_tax_rate":{"description":"This field defines the tax rate on the shipping fee.","format":"decimal","nullable":true,"pattern":"^-?\\d{0,3}(?:\\.\\d{0,2})?$","type":"string"},"shipping_tracking_url":{"description":"This field defines the shipping tracking URL.","format":"uri","maxLength":500,"nullable":true,"type":"string"},"status":{"$ref":"#/components/schemas/StatusC57Enum","description":"Current status of the record (e.g., active, inactive)."},"tracking_number":{"description":"This field defines the shipping tracking number.","maxLength":256,"nullable":true,"type":"string"},"user":{"description":"This field defines the user ID of the person who placed the order.","nullable":true,"type":"integer"},"user_email":{"description":"Email address of the user or entity.","format":"email","maxLength":254,"type":"string"}},"type":"object"},"ClientTypeEnum":{"description":"* `default` - Default\n* `android` - Android\n* `ios` - Ios\n* `instore` - Instore\n* `b2b` - B2B","enum":["default","android","ios","instore","b2b"],"type":"string"},"CurrencyEnum":{"description":"* `try` - TL\n* `eur` - EUR\n* `usd` - USD\n* `egp` - EGP\n* `gbp` - GBP\n* `mad` - MAD\n* `pln` - PLN\n* `sar` - SAR\n* `ron` - RON\n* `uah` - UAH\n* `czk` - CZK\n* `huf` - HUF\n* `rub` - RUB\n* `bgn` - BGN\n* `iqd` - IQD\n* `kwd` - KWD\n* `bhd` - BHD\n* `omr` - OMR\n* `qar` - QAR\n* `aed` - AED\n* `ngn` - NGN\n* `inr` - INR\n* `lei` - LEI\n* `kzt` - KZT\n* `jod` - JOD\n* `rsd` - RSD","enum":["try","eur","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"],"type":"string"},"ShippingCompanyEnum":{"description":"* `aras` - Aras Kargo\n* `ups` - UPS\n* `asil` - Asil Kargo\n* `yurtici` - Yurtiçi Kargo\n* `mng` - MNG Kargo\n* `hbexpress` - Hepsi Express\n* `aramex` - Aramex\n* `other` - Other\n* `ismail` - Is-Mail Kargo\n* `gls` - GLS Logistic\n* `hoopkapida` - Hoopkapida Kargo\n* `fancourier` - Fan Courier\n* `tmmexpress` - TMM Express\n* `ptt` - Ptt\n* `horoz` - Horoz\n* `novaposhta` - Nova Poshta\n* `droplight` - DropLight\n* `surat` - Sürat Kargo\n* `ups_intl` - UPS International\n* `b2c_direct` - B2C Direct\n* `jetizz` - Jetizz\n* `tyexpress` - Tyexpress\n* `ay_cargo` - Ay Kargo\n* `cainiao` - Cainiao\n* `acs` - ACS Kargo\n* `packupp` - Packupp\n* `k_gelsin` - Kolay Gelsin\n* `birgunde` - Bir Günde Kargo\n* `kargo_ist` - Kargo İstanbul\n* `giz` - Giz\n* `mylerz` - Mylerz Cargo\n* `mylerzsdd` - Mylerz Same Day Delivery\n* `r2s` - R2S Cargo\n* `boomex` - Boomex\n* `chrono` - Chrono Diali Courier\n* `scotty` - Scotty Cargo\n* `netkargo` - NetKargo\n* `murat_lgc` - Murat Lojistik\n* `fast_cargo` - Fast Cargo\n* `dpd` - DPD Cargo\n* `in_post` - In Post\n* `k_sende` - Kargom Sende\n* `rupost` - Ru Post\n* `cdek` - Cdek\n* `loomis` - Loomis\n* `carrtell` - Cartell\n* `speeta` - Speeta\n* `bringo` - Bringo\n* `dhlexpress` - DHL Express\n* `bovo` - Bovo\n* `gelal` - Gelal\n* `arvato` - Arvato\n* `bpost_athome` - Bpost athome\n* `bpost_24_7` - Bpost 24/7\n* `cathedis` - Cathedis\n* `dincer` - Dinçer Lojistik\n* `sameday` - Sameday Easybox\n* `gkn` - GKN Kargo\n* `svuum` - Svuum Cargo\n* `hjetxl` - Hepsi Jet XL\n* `aramex_express` - Aramex Express\n* `tnt_cargo` - TNT Cargo\n* `ceva_cargo` - Ceva Cargo\n* `bringo_express` - Bringo Express\n* `sendeo` - Sendeo Cargo\n* `cargus` - Cargus\n* `pinkpost` - PinkPost\n* `speedy` - Speedy Cargo\n* `deliverigo` - Deliverigo\n* `jetizz_v7` - Jetizz v7\n* `evdemo_lojistik` - Evdemo Lojistik\n* `extension` - Extension Cargo\n* `apiship` - ApiShip\n* `octovan_express` - Octovan Express\n* `clickpost` - Clickpost\n* `iMile` - iMile Delivery\n* `jetlogi` - Jetlogi\n* `bolt` - Bolt Kargo\n* `pony_express` - Pony Express\n* `boxaty` - Boxaty\n* `monist` - Monist\n* `city_express` - City Express\n* `fero_ai` - Fero AI\n* `carriyo` - Carriyo\n* `pakettaxi` - Paket Taxi\n* `falcon_flex` - Falcon Flex\n* `porter_express` - Porter Express\n* `sky_express` - Sky Express\n* `pts_express` - PTS Worldwide Express\n* `bpost_pickup` - Bpost Pickup\n* `shipx` - ShipX\n* `fareye` - FarEye","enum":["aras","ups","asil","yurtici","mng","hbexpress","aramex","other","ismail","gls","hoopkapida","fancourier","tmmexpress","ptt","horoz","novaposhta","droplight","surat","ups_intl","b2c_direct","jetizz","tyexpress","ay_cargo","cainiao","acs","packupp","k_gelsin","birgunde","kargo_ist","giz","mylerz","mylerzsdd","r2s","boomex","chrono","scotty","netkargo","murat_lgc","fast_cargo","dpd","in_post","k_sende","rupost","cdek","loomis","carrtell","speeta","bringo","dhlexpress","bovo","gelal","arvato","bpost_athome","bpost_24_7","cathedis","dincer","sameday","gkn","svuum","hjetxl","aramex_express","tnt_cargo","ceva_cargo","bringo_express","sendeo","cargus","pinkpost","speedy","deliverigo","jetizz_v7","evdemo_lojistik","extension","apiship","octovan_express","clickpost","iMile","jetlogi","bolt","pony_express","boxaty","monist","city_express","fero_ai","carriyo","pakettaxi","falcon_flex","porter_express","sky_express","pts_express","bpost_pickup","shipx","fareye"],"type":"string"},"StatusC57Enum":{"description":"* `50` - cancellation waiting\n* `100` - cancelled\n* `200` - waiting\n* `300` - payment_waiting\n* `350` - confirmation waiting\n* `400` - approved\n* `450` - preparing\n* `500` - shipped\n* `510` - shipped_and_informed\n* `520` - ready for pickup\n* `540` - attempted_delivery\n* `544` - review_started\n* `545` - review_waiting\n* `546` - waiting_for_payment\n* `547` - paid\n* `550` - delivered\n* `600` - refunded","enum":["50","100","200","300","350","400","450","500","510","520","540","544","545","546","547","550","600"],"type":"string"}}},"paths":{"/orders/orders/":{"get":{"description":"Fetches order-related data, detailing financial amounts, order statuses, customer information, and various logistical details surrounding order handling.","operationId":"orders_orders_list","parameters":[{"description":"Query parameter `amount` used to filter results based on specific conditions.","in":"query","name":"amount","schema":{"type":"number"}},{"description":"Query parameter `basket` used to filter results based on specific conditions.","in":"query","name":"basket","schema":{"type":"integer"}},{"description":"Query parameter `billing_address` used to filter results based on specific conditions.","in":"query","name":"billing_address","schema":{"type":"integer"}},{"description":"Query parameter `bin_number` used to filter results based on specific conditions.","in":"query","name":"bin_number","schema":{"type":"string"}},{"description":"Query parameter `card` used to filter results based on specific conditions.","in":"query","name":"card","schema":{"type":"integer"}},{"description":"Query parameter `checkout_provider` used to filter results based on specific conditions.","in":"query","name":"checkout_provider","schema":{"type":"integer"}},{"description":"Query parameter `client_type` used to filter results based on specific conditions.","in":"query","name":"client_type","schema":{"type":"string"}},{"description":"Query parameter `created_date` used to filter results based on specific conditions.","in":"query","name":"created_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `currency` used to filter results based on specific conditions.","in":"query","name":"currency","schema":{"type":"string"}},{"description":"Query parameter `defined_tracking_url` used to filter results based on specific conditions.","in":"query","name":"defined_tracking_url","schema":{"type":"string"}},{"description":"Query parameter `discount_amount` used to filter results based on specific conditions.","in":"query","name":"discount_amount","schema":{"type":"number"}},{"description":"Query parameter `discount_refund_amount` used to filter results based on specific conditions.","in":"query","name":"discount_refund_amount","schema":{"type":"number"}},{"description":"Query parameter `e_archive_url` used to filter results based on specific conditions.","in":"query","name":"e_archive_url","schema":{"type":"string"}},{"description":"Query parameter `extra_field` used to filter results based on specific conditions.","in":"query","name":"extra_field","schema":{"nullable":true}},{"description":"Query parameter `gift_box_note` used to filter results based on specific conditions.","in":"query","name":"gift_box_note","schema":{"type":"string"}},{"description":"Query parameter `has_gift_box` used to filter results based on specific conditions.","in":"query","name":"has_gift_box","schema":{"type":"boolean"}},{"description":"Query parameter `id` used to filter results based on specific conditions.","in":"query","name":"id","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than the given value.","in":"query","name":"id__gt","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than or equal to the given value.","in":"query","name":"id__gte","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than the given value.","in":"query","name":"id__lt","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than or equal to the given value.","in":"query","name":"id__lte","schema":{"type":"integer"}},{"description":"Query parameter `installment` used to filter results based on specific conditions.","in":"query","name":"installment","schema":{"type":"integer"}},{"description":"Query parameter `installment_count` used to filter results based on specific conditions.","in":"query","name":"installment_count","schema":{"type":"integer"}},{"description":"Query parameter `installment_interest_amount` used to filter results based on specific conditions.","in":"query","name":"installment_interest_amount","schema":{"type":"number"}},{"description":"Query parameter `invoice_date` used to filter results based on specific conditions.","in":"query","name":"invoice_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `invoice_number` used to filter results based on specific conditions.","in":"query","name":"invoice_number","schema":{"type":"string"}},{"description":"Query parameter `language_code` used to filter results based on specific conditions.","in":"query","name":"language_code","schema":{"type":"string"}},{"description":"Limits the number of results returned in the response.","in":"query","name":"limit","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `modified_date` used to filter results based on specific conditions.","in":"query","name":"modified_date","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than the given value.","in":"query","name":"modified_date__gt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than or equal to the given value.","in":"query","name":"modified_date__gte","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than the given value.","in":"query","name":"modified_date__lt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than or equal to the given value.","in":"query","name":"modified_date__lte","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `notes` used to filter results based on specific conditions.","in":"query","name":"notes","schema":{"type":"string"}},{"description":"Query parameter `number` used to filter results based on specific conditions.","in":"query","name":"number","schema":{"type":"string"}},{"description":"Query parameter `page` used to filter results based on specific conditions.","in":"query","name":"page","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `payment_option` used to filter results based on specific conditions.","in":"query","name":"payment_option","schema":{"type":"integer"}},{"description":"Query parameter `payment_option_slug` used to filter results based on specific conditions.","in":"query","name":"payment_option_slug","schema":{"type":"string"}},{"description":"Query parameter `refund_amount` used to filter results based on specific conditions.","in":"query","name":"refund_amount","schema":{"type":"number"}},{"description":"Query parameter `remote_addr` used to filter results based on specific conditions.","in":"query","name":"remote_addr","schema":{"type":"string"}},{"description":"Query parameter `segment` used to filter results based on specific conditions.","in":"query","name":"segment","schema":{"type":"integer"}},{"description":"Query parameter `shipping_address` used to filter results based on specific conditions.","in":"query","name":"shipping_address","schema":{"type":"integer"}},{"description":"Query parameter `shipping_amount` used to filter results based on specific conditions.","in":"query","name":"shipping_amount","schema":{"type":"number"}},{"description":"Query parameter `shipping_company` used to filter results based on specific conditions.","in":"query","name":"shipping_company","schema":{"type":"string"}},{"description":"Query parameter `shipping_option` used to filter results based on specific conditions.","in":"query","name":"shipping_option","schema":{"type":"integer"}},{"description":"Query parameter `shipping_option_slug` used to filter results based on specific conditions.","in":"query","name":"shipping_option_slug","schema":{"type":"string"}},{"description":"Query parameter `shipping_refund_amount` used to filter results based on specific conditions.","in":"query","name":"shipping_refund_amount","schema":{"type":"number"}},{"description":"Query parameter `shipping_tax_rate` used to filter results based on specific conditions.","in":"query","name":"shipping_tax_rate","schema":{"type":"number"}},{"description":"Query parameter `shipping_tracking_url` used to filter results based on specific conditions.","in":"query","name":"shipping_tracking_url","schema":{"type":"string"}},{"description":"Query parameter `sort` used to filter results based on specific conditions.","in":"query","name":"sort","required":false,"schema":{"type":"string"}},{"description":"Query parameter `status` used to filter results based on specific conditions.","in":"query","name":"status","schema":{"type":"string"}},{"description":"Query parameter `tracking_number` used to filter results based on specific conditions.","in":"query","name":"tracking_number","schema":{"type":"string"}},{"description":"Query parameter `user` used to filter results based on specific conditions.","in":"query","name":"user","schema":{"type":"integer"}},{"description":"Query parameter `user_email` used to filter results based on specific conditions.","in":"query","name":"user_email","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedOrderList"}}},"description":"Successful response for status code 200."}},"tags":["orders"]}}}}
```

## GET /orders/orders/{id}/

> Fetches order-related data, detailing financial amounts, order statuses, customer information, and various logistical details surrounding order handling. This endpoint retrieves a specific record by its unique identifier.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"Order":{"properties":{"amount":{"description":"This field defines the order amount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Order amount","type":"string"},"basket":{"description":"This field defines the basket ID associated with the order.","nullable":true,"type":"integer"},"billing_address":{"description":"Physical or electronic address details.","nullable":true,"type":"integer"},"bin_number":{"description":"This field defines the BIN (Bank Identification Number) of the credit card if payment was made by credit card.","maxLength":8,"nullable":true,"type":"string"},"card":{"description":"This field defines the Card ID stored in the database, associated with the BIN number and POS, if the payment was made by credit card.","nullable":true,"type":"integer"},"checkout_provider":{"description":"This field defines the provider ID if the order was placed through a checkout provider.","nullable":true,"type":"integer"},"client_type":{"$ref":"#/components/schemas/ClientTypeEnum","description":"The classification or type related to this field."},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"currency":{"$ref":"#/components/schemas/CurrencyEnum","description":"This field defines the currency used for the payment."},"defined_tracking_url":{"description":"This field defines the customized tracking URL.","format":"uri","maxLength":512,"nullable":true,"type":"string"},"delivery_range":{"additionalProperties":{"format":"date-time","type":"string"},"description":"This field defines the estimated delivery time range for the order.","nullable":true,"type":"object"},"discount_amount":{"description":"Numerical value representing quantity or total amount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Discount","type":"string"},"discount_refund_amount":{"description":"Numerical value representing quantity or total amount.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Discount","type":"string"},"e_archive_url":{"description":"This field defines the e-invoice URL.","format":"uri","maxLength":1024,"nullable":true,"title":"E-Archive","type":"string"},"extra_field":{"description":"This field defines an additional field required for the order if necessary.","nullable":true},"gift_box_note":{"description":"This field defines the note for the gift box.","maxLength":160,"nullable":true,"type":"string"},"has_gift_box":{"description":"Boolean flag indicating whether the condition is met.","nullable":true,"type":"boolean"},"id":{"description":"Unique identifier for the record.","type":"integer"},"installment":{"description":"This field defines the Installment database ID associated with the card.","nullable":true,"type":"integer"},"installment_count":{"description":"Numerical value representing quantity or total amount.","maximum":2147483647,"minimum":0,"type":"integer"},"installment_interest_amount":{"description":"This field defines the total interest applied for installment payments.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"invoice_date":{"description":"This field defines the invoice date.","format":"date-time","nullable":true,"type":"string"},"invoice_number":{"description":"This field defines the invoice number.","maxLength":32,"nullable":true,"type":"string"},"language_code":{"description":"This field defines the language associated with the order.","maxLength":256,"nullable":true,"type":"string"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"notes":{"description":"This field defines the note related to the order.","maxLength":320,"nullable":true,"title":"Instructions","type":"string"},"number":{"description":"This field defines the unique order number.","maxLength":128,"title":"Order number","type":"string"},"payment_option":{"description":"This field defines the ID of the selected payment option.","type":"integer"},"payment_option_slug":{"description":"This field defines the slug information for the selected payment option.","maxLength":128,"pattern":"^[-a-zA-Z0-9_]+$","type":"string"},"refund_amount":{"description":"This field defines the amount that has been returned.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Order refund amount","type":"string"},"remote_addr":{"description":"This field defines the IP address from which the order was placed.","nullable":true,"type":"string"},"segment":{"description":"This field defines the segment ID information to which the user is associated, if applicable.","nullable":true,"type":"integer"},"shipping_address":{"description":"Physical or electronic address details.","nullable":true,"type":"integer"},"shipping_amount":{"description":"This field defines the shipping fee.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","title":"Shipping charge","type":"string"},"shipping_company":{"$ref":"#/components/schemas/ShippingCompanyEnum","description":"This field defines the shipping company responsible for delivering the order."},"shipping_option":{"description":"This field defines the ID of the selected shipping option.","type":"integer"},"shipping_option_slug":{"description":"This field defines the slug information for the selected shipping option.","maxLength":128,"pattern":"^[-a-zA-Z0-9_]+$","type":"string"},"shipping_refund_amount":{"description":"This field defines the refunded shipping fee.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"shipping_tax_rate":{"description":"This field defines the tax rate on the shipping fee.","format":"decimal","nullable":true,"pattern":"^-?\\d{0,3}(?:\\.\\d{0,2})?$","type":"string"},"shipping_tracking_url":{"description":"This field defines the shipping tracking URL.","format":"uri","maxLength":500,"nullable":true,"type":"string"},"status":{"$ref":"#/components/schemas/StatusC57Enum","description":"Current status of the record (e.g., active, inactive)."},"tracking_number":{"description":"This field defines the shipping tracking number.","maxLength":256,"nullable":true,"type":"string"},"user":{"description":"This field defines the user ID of the person who placed the order.","nullable":true,"type":"integer"},"user_email":{"description":"Email address of the user or entity.","format":"email","maxLength":254,"type":"string"}},"type":"object"},"ClientTypeEnum":{"description":"* `default` - Default\n* `android` - Android\n* `ios` - Ios\n* `instore` - Instore\n* `b2b` - B2B","enum":["default","android","ios","instore","b2b"],"type":"string"},"CurrencyEnum":{"description":"* `try` - TL\n* `eur` - EUR\n* `usd` - USD\n* `egp` - EGP\n* `gbp` - GBP\n* `mad` - MAD\n* `pln` - PLN\n* `sar` - SAR\n* `ron` - RON\n* `uah` - UAH\n* `czk` - CZK\n* `huf` - HUF\n* `rub` - RUB\n* `bgn` - BGN\n* `iqd` - IQD\n* `kwd` - KWD\n* `bhd` - BHD\n* `omr` - OMR\n* `qar` - QAR\n* `aed` - AED\n* `ngn` - NGN\n* `inr` - INR\n* `lei` - LEI\n* `kzt` - KZT\n* `jod` - JOD\n* `rsd` - RSD","enum":["try","eur","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"],"type":"string"},"ShippingCompanyEnum":{"description":"* `aras` - Aras Kargo\n* `ups` - UPS\n* `asil` - Asil Kargo\n* `yurtici` - Yurtiçi Kargo\n* `mng` - MNG Kargo\n* `hbexpress` - Hepsi Express\n* `aramex` - Aramex\n* `other` - Other\n* `ismail` - Is-Mail Kargo\n* `gls` - GLS Logistic\n* `hoopkapida` - Hoopkapida Kargo\n* `fancourier` - Fan Courier\n* `tmmexpress` - TMM Express\n* `ptt` - Ptt\n* `horoz` - Horoz\n* `novaposhta` - Nova Poshta\n* `droplight` - DropLight\n* `surat` - Sürat Kargo\n* `ups_intl` - UPS International\n* `b2c_direct` - B2C Direct\n* `jetizz` - Jetizz\n* `tyexpress` - Tyexpress\n* `ay_cargo` - Ay Kargo\n* `cainiao` - Cainiao\n* `acs` - ACS Kargo\n* `packupp` - Packupp\n* `k_gelsin` - Kolay Gelsin\n* `birgunde` - Bir Günde Kargo\n* `kargo_ist` - Kargo İstanbul\n* `giz` - Giz\n* `mylerz` - Mylerz Cargo\n* `mylerzsdd` - Mylerz Same Day Delivery\n* `r2s` - R2S Cargo\n* `boomex` - Boomex\n* `chrono` - Chrono Diali Courier\n* `scotty` - Scotty Cargo\n* `netkargo` - NetKargo\n* `murat_lgc` - Murat Lojistik\n* `fast_cargo` - Fast Cargo\n* `dpd` - DPD Cargo\n* `in_post` - In Post\n* `k_sende` - Kargom Sende\n* `rupost` - Ru Post\n* `cdek` - Cdek\n* `loomis` - Loomis\n* `carrtell` - Cartell\n* `speeta` - Speeta\n* `bringo` - Bringo\n* `dhlexpress` - DHL Express\n* `bovo` - Bovo\n* `gelal` - Gelal\n* `arvato` - Arvato\n* `bpost_athome` - Bpost athome\n* `bpost_24_7` - Bpost 24/7\n* `cathedis` - Cathedis\n* `dincer` - Dinçer Lojistik\n* `sameday` - Sameday Easybox\n* `gkn` - GKN Kargo\n* `svuum` - Svuum Cargo\n* `hjetxl` - Hepsi Jet XL\n* `aramex_express` - Aramex Express\n* `tnt_cargo` - TNT Cargo\n* `ceva_cargo` - Ceva Cargo\n* `bringo_express` - Bringo Express\n* `sendeo` - Sendeo Cargo\n* `cargus` - Cargus\n* `pinkpost` - PinkPost\n* `speedy` - Speedy Cargo\n* `deliverigo` - Deliverigo\n* `jetizz_v7` - Jetizz v7\n* `evdemo_lojistik` - Evdemo Lojistik\n* `extension` - Extension Cargo\n* `apiship` - ApiShip\n* `octovan_express` - Octovan Express\n* `clickpost` - Clickpost\n* `iMile` - iMile Delivery\n* `jetlogi` - Jetlogi\n* `bolt` - Bolt Kargo\n* `pony_express` - Pony Express\n* `boxaty` - Boxaty\n* `monist` - Monist\n* `city_express` - City Express\n* `fero_ai` - Fero AI\n* `carriyo` - Carriyo\n* `pakettaxi` - Paket Taxi\n* `falcon_flex` - Falcon Flex\n* `porter_express` - Porter Express\n* `sky_express` - Sky Express\n* `pts_express` - PTS Worldwide Express\n* `bpost_pickup` - Bpost Pickup\n* `shipx` - ShipX\n* `fareye` - FarEye","enum":["aras","ups","asil","yurtici","mng","hbexpress","aramex","other","ismail","gls","hoopkapida","fancourier","tmmexpress","ptt","horoz","novaposhta","droplight","surat","ups_intl","b2c_direct","jetizz","tyexpress","ay_cargo","cainiao","acs","packupp","k_gelsin","birgunde","kargo_ist","giz","mylerz","mylerzsdd","r2s","boomex","chrono","scotty","netkargo","murat_lgc","fast_cargo","dpd","in_post","k_sende","rupost","cdek","loomis","carrtell","speeta","bringo","dhlexpress","bovo","gelal","arvato","bpost_athome","bpost_24_7","cathedis","dincer","sameday","gkn","svuum","hjetxl","aramex_express","tnt_cargo","ceva_cargo","bringo_express","sendeo","cargus","pinkpost","speedy","deliverigo","jetizz_v7","evdemo_lojistik","extension","apiship","octovan_express","clickpost","iMile","jetlogi","bolt","pony_express","boxaty","monist","city_express","fero_ai","carriyo","pakettaxi","falcon_flex","porter_express","sky_express","pts_express","bpost_pickup","shipx","fareye"],"type":"string"},"StatusC57Enum":{"description":"* `50` - cancellation waiting\n* `100` - cancelled\n* `200` - waiting\n* `300` - payment_waiting\n* `350` - confirmation waiting\n* `400` - approved\n* `450` - preparing\n* `500` - shipped\n* `510` - shipped_and_informed\n* `520` - ready for pickup\n* `540` - attempted_delivery\n* `544` - review_started\n* `545` - review_waiting\n* `546` - waiting_for_payment\n* `547` - paid\n* `550` - delivered\n* `600` - refunded","enum":["50","100","200","300","350","400","450","500","510","520","540","544","545","546","547","550","600"],"type":"string"}}},"paths":{"/orders/orders/{id}/":{"get":{"description":"Fetches order-related data, detailing financial amounts, order statuses, customer information, and various logistical details surrounding order handling. This endpoint retrieves a specific record by its unique identifier.","operationId":"orders_orders_retrieve","parameters":[{"description":"A unique integer value identifying this order.","in":"path","name":"id","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Order"}}},"description":"Successful response for status code 200."},"404":{"content":{"application/json":{}},"description":"Object not found."}},"tags":["orders"]}}}}
```

## GET /orders/transactions/

> This method retrieves financial transaction data related to orders, including transaction types, currencies, amounts, and additional relational details such as user information and order connections.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"PaginatedOrderTransactionList":{"properties":{"count":{"description":"Numerical value representing quantity or total amount.","type":"integer"},"next":{"description":"This field defines the URL of the next page.","format":"uri","nullable":true,"type":"string"},"previous":{"description":"This field defines the URL of the previous page.","format":"uri","nullable":true,"type":"string"},"results":{"description":"This field returns a list of results.","items":{"$ref":"#/components/schemas/OrderTransaction"},"type":"array"}},"type":"object"},"OrderTransaction":{"properties":{"amount":{"description":"The field defines the total amount of the loyalty transaction.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"auth_code":{"description":"The field defines the authorization code of the order transactions.","maxLength":255,"nullable":true,"type":"string"},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"currency":{"$ref":"#/components/schemas/CurrencyEnum","description":"The field defines the currency of the loyalty transaction."},"id":{"description":"Unique identifier for the record.","type":"integer"},"is_succeeded":{"description":"Boolean flag indicating whether the condition is met.","type":"boolean"},"main_pos":{"description":"The field defines the main pos of the order transactions.","nullable":true,"type":"integer"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"order":{"description":"The field defines the order of the category node.","nullable":true,"type":"integer"},"pos":{"description":"The field defines the pos of the order transactions.","type":"integer"},"raw_request":{"description":"The field defines the raw request of the order transactions.","type":"string"},"raw_response":{"description":"The field defines the raw response of the order transactions.","nullable":true,"type":"string"},"remote_addr":{"description":"This field defines the IP address of the client making the request.","nullable":true,"type":"string"},"three_d_used":{"description":"The field defines the 3D usage status of the order transactions.","type":"boolean"},"transaction_id":{"description":"The field defines the transaction ID of the order transactions.","maxLength":512,"nullable":true,"type":"string"},"transaction_type":{"$ref":"#/components/schemas/TransactionTypeEnum","description":"The classification or type related to this field."},"user":{"description":"This field defines the user who triggered the event.","nullable":true,"type":"integer"},"user_email":{"description":"Email address of the user or entity.","format":"email","maxLength":254,"type":"string"}},"type":"object"},"CurrencyEnum":{"description":"* `try` - TL\n* `eur` - EUR\n* `usd` - USD\n* `egp` - EGP\n* `gbp` - GBP\n* `mad` - MAD\n* `pln` - PLN\n* `sar` - SAR\n* `ron` - RON\n* `uah` - UAH\n* `czk` - CZK\n* `huf` - HUF\n* `rub` - RUB\n* `bgn` - BGN\n* `iqd` - IQD\n* `kwd` - KWD\n* `bhd` - BHD\n* `omr` - OMR\n* `qar` - QAR\n* `aed` - AED\n* `ngn` - NGN\n* `inr` - INR\n* `lei` - LEI\n* `kzt` - KZT\n* `jod` - JOD\n* `rsd` - RSD","enum":["try","eur","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"],"type":"string"},"TransactionTypeEnum":{"description":"* `authorize` - Authorize\n* `capture` - Capture\n* `purchase` - Purchase\n* `refund` - Refund\n* `void` - Void\n* `purchase_three_d` - Purchase Three D\n* `redirect` - Redirect\n* `webhook` - Webhook\n* `store_card` - Store Card\n* `return_back` - Return Back\n* `init` - Init\n* `capture_refund` - Capture Refund\n* `pre_purchase` - Pre Purchase","enum":["authorize","capture","purchase","refund","void","purchase_three_d","redirect","webhook","store_card","return_back","init","capture_refund","pre_purchase"],"type":"string"}}},"paths":{"/orders/transactions/":{"get":{"description":"This method retrieves financial transaction data related to orders, including transaction types, currencies, amounts, and additional relational details such as user information and order connections.","operationId":"orders_transactions_list","parameters":[{"description":"Query parameter `amount` used to filter results based on specific conditions.","in":"query","name":"amount","schema":{"type":"number"}},{"description":"Query parameter `auth_code` used to filter results based on specific conditions.","in":"query","name":"auth_code","schema":{"type":"string"}},{"description":"Query parameter `created_date` used to filter results based on specific conditions.","in":"query","name":"created_date","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `currency` used to filter results based on specific conditions.","in":"query","name":"currency","schema":{"type":"string"}},{"description":"Query parameter `id` used to filter results based on specific conditions.","in":"query","name":"id","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than the given value.","in":"query","name":"id__gt","schema":{"type":"integer"}},{"description":"Filters records where `id` is greater than or equal to the given value.","in":"query","name":"id__gte","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than the given value.","in":"query","name":"id__lt","schema":{"type":"integer"}},{"description":"Filters records where `id` is less than or equal to the given value.","in":"query","name":"id__lte","schema":{"type":"integer"}},{"description":"Query parameter `is_succeeded` used to filter results based on specific conditions.","in":"query","name":"is_succeeded","schema":{"type":"boolean"}},{"description":"Limits the number of results returned in the response.","in":"query","name":"limit","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `main_pos` used to filter results based on specific conditions.","in":"query","name":"main_pos","schema":{"type":"integer"}},{"description":"Query parameter `modified_date` used to filter results based on specific conditions.","in":"query","name":"modified_date","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than the given value.","in":"query","name":"modified_date__gt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is greater than or equal to the given value.","in":"query","name":"modified_date__gte","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than the given value.","in":"query","name":"modified_date__lt","schema":{"format":"date-time","type":"string"}},{"description":"Filters records where `modified_date` is less than or equal to the given value.","in":"query","name":"modified_date__lte","schema":{"format":"date-time","type":"string"}},{"description":"Query parameter `order` used to filter results based on specific conditions.","in":"query","name":"order","schema":{"type":"integer"}},{"description":"Query parameter `page` used to filter results based on specific conditions.","in":"query","name":"page","required":false,"schema":{"type":"integer"}},{"description":"Query parameter `pos` used to filter results based on specific conditions.","in":"query","name":"pos","schema":{"type":"integer"}},{"description":"Query parameter `raw_request` used to filter results based on specific conditions.","in":"query","name":"raw_request","schema":{"type":"string"}},{"description":"Query parameter `raw_response` used to filter results based on specific conditions.","in":"query","name":"raw_response","schema":{"type":"string"}},{"description":"Query parameter `remote_addr` used to filter results based on specific conditions.","in":"query","name":"remote_addr","schema":{"type":"string"}},{"description":"Query parameter `sort` used to filter results based on specific conditions.","in":"query","name":"sort","required":false,"schema":{"type":"string"}},{"description":"Query parameter `three_d_used` used to filter results based on specific conditions.","in":"query","name":"three_d_used","schema":{"type":"boolean"}},{"description":"Query parameter `transaction_id` used to filter results based on specific conditions.","in":"query","name":"transaction_id","schema":{"type":"string"}},{"description":"Query parameter `transaction_type` used to filter results based on specific conditions.","in":"query","name":"transaction_type","schema":{"type":"string"}},{"description":"Query parameter `user` used to filter results based on specific conditions.","in":"query","name":"user","schema":{"type":"integer"}},{"description":"Query parameter `user_email` used to filter results based on specific conditions.","in":"query","name":"user_email","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedOrderTransactionList"}}},"description":"Successful response for status code 200."}},"tags":["orders"]}}}}
```

## GET /orders/transactions/{id}/

> This method retrieves financial transaction data related to orders, including transaction types, currencies, amounts, and additional relational details such as user information and order connections. This endpoint retrieves a specific record by its unique identifier.

```json
{"openapi":"3.0.3","info":{"title":"Data Warehouse","version":"1.0.0"},"servers":[{"description":"Server base URL with dynamic channel_id.","url":"https://{omnitron_url}/api/v1/remote/{channel_id}/data-warehouse","variables":{"channel_id":{"default":"1","description":"Unique identifier for the sales channel."},"omnitron_url":{"default":"sandbox.akinon.com"}}},{"description":"Server base URL with Commerce URL.","url":"https://{commerce_url}/api/v1/data-warehouse","variables":{"commerce_url":{"default":"sandbox.commerce.akinon.com"}}}],"security":[{"tokenAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"description":"Token-based authentication with required prefix \"Token\"","in":"header","name":"Authorization","type":"apiKey"}},"schemas":{"OrderTransaction":{"properties":{"amount":{"description":"The field defines the total amount of the loyalty transaction.","format":"decimal","pattern":"^-?\\d{0,10}(?:\\.\\d{0,2})?$","type":"string"},"auth_code":{"description":"The field defines the authorization code of the order transactions.","maxLength":255,"nullable":true,"type":"string"},"created_date":{"description":"Timestamp indicating when the record was created.","format":"date-time","type":"string"},"currency":{"$ref":"#/components/schemas/CurrencyEnum","description":"The field defines the currency of the loyalty transaction."},"id":{"description":"Unique identifier for the record.","type":"integer"},"is_succeeded":{"description":"Boolean flag indicating whether the condition is met.","type":"boolean"},"main_pos":{"description":"The field defines the main pos of the order transactions.","nullable":true,"type":"integer"},"modified_date":{"description":"This field defines the last updated date.","format":"date-time","type":"string"},"order":{"description":"The field defines the order of the category node.","nullable":true,"type":"integer"},"pos":{"description":"The field defines the pos of the order transactions.","type":"integer"},"raw_request":{"description":"The field defines the raw request of the order transactions.","type":"string"},"raw_response":{"description":"The field defines the raw response of the order transactions.","nullable":true,"type":"string"},"remote_addr":{"description":"This field defines the IP address of the client making the request.","nullable":true,"type":"string"},"three_d_used":{"description":"The field defines the 3D usage status of the order transactions.","type":"boolean"},"transaction_id":{"description":"The field defines the transaction ID of the order transactions.","maxLength":512,"nullable":true,"type":"string"},"transaction_type":{"$ref":"#/components/schemas/TransactionTypeEnum","description":"The classification or type related to this field."},"user":{"description":"This field defines the user who triggered the event.","nullable":true,"type":"integer"},"user_email":{"description":"Email address of the user or entity.","format":"email","maxLength":254,"type":"string"}},"type":"object"},"CurrencyEnum":{"description":"* `try` - TL\n* `eur` - EUR\n* `usd` - USD\n* `egp` - EGP\n* `gbp` - GBP\n* `mad` - MAD\n* `pln` - PLN\n* `sar` - SAR\n* `ron` - RON\n* `uah` - UAH\n* `czk` - CZK\n* `huf` - HUF\n* `rub` - RUB\n* `bgn` - BGN\n* `iqd` - IQD\n* `kwd` - KWD\n* `bhd` - BHD\n* `omr` - OMR\n* `qar` - QAR\n* `aed` - AED\n* `ngn` - NGN\n* `inr` - INR\n* `lei` - LEI\n* `kzt` - KZT\n* `jod` - JOD\n* `rsd` - RSD","enum":["try","eur","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"],"type":"string"},"TransactionTypeEnum":{"description":"* `authorize` - Authorize\n* `capture` - Capture\n* `purchase` - Purchase\n* `refund` - Refund\n* `void` - Void\n* `purchase_three_d` - Purchase Three D\n* `redirect` - Redirect\n* `webhook` - Webhook\n* `store_card` - Store Card\n* `return_back` - Return Back\n* `init` - Init\n* `capture_refund` - Capture Refund\n* `pre_purchase` - Pre Purchase","enum":["authorize","capture","purchase","refund","void","purchase_three_d","redirect","webhook","store_card","return_back","init","capture_refund","pre_purchase"],"type":"string"}}},"paths":{"/orders/transactions/{id}/":{"get":{"description":"This method retrieves financial transaction data related to orders, including transaction types, currencies, amounts, and additional relational details such as user information and order connections. This endpoint retrieves a specific record by its unique identifier.","operationId":"orders_transactions_retrieve","parameters":[{"description":"A unique integer value identifying this transaction.","in":"path","name":"id","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderTransaction"}}},"description":"Successful response for status code 200."},"404":{"content":{"application/json":{}},"description":"Object not found."}},"tags":["orders"]}}}}
```
