Commercial APIs
  1. Namshi
Commercial APIs
  • Authentication
    • Documentation
    • Authentication Credentials
    • Login API
      POST
  • Namshi
    • Order Webhook
    • Return Picked Up Webhook
    • Update Price API
      POST
    • Update Country Visibility API
      POST
    • Get Price and Country Visibility API
      GET
    • List Orders
      POST
  • Stock
    • Stock Update API
      POST
  • Noon Pricing
    • Core Partner Sku Info
      POST
    • Core Partner Sku Update
      POST
  • Xborder Pricing
    • create or update product pricing
      POST
    • deactivate existing product pricing
      POST
  1. Namshi

List Orders

POST
https://nm-namshi-api-seller.noon.partners/_integ/orders/list
Get Orders

Request

Body Params application/json

Example
{
  "page": 1,
  "rows": 20,
  "whCode": "string",
  "startDate": "2025-03-10T18:06:39.533Z",
  "endDate": "2025-03-10T18:06:39.533Z",
  "orderNrs": [
    "string"
  ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://nm-namshi-api-seller.noon.partners/_integ/orders/list' \
--header 'Content-Type: application/json' \
--data-raw '{
  "page": 1,
  "rows": 20,
  "whCode": "string",
  "startDate": "2025-03-10T18:06:39.533Z",
  "endDate": "2025-03-10T18:06:39.533Z",
  "orderNrs": [
    "string"
  ]
}'

Responses

🟢200Success
application/json
Headers

Body

Example
{
  "page": 0,
  "rows": 0,
  "totalPages": 0,
  "totalCount": 0,
  "orders": [
    {
      "orderNr": "string",
      "refNr": "string",
      "orderCreatedAt": "2025-03-10T19:12:16.010Z",
      "items": [
        {
          "purchaseItemNr": "string",
          "partnerSku": "string",
          "isExchange": true,
          "itemStatusCode": "string",
          "maxTargetShippedAt": "2025-03-10T19:12:16.010Z",
          "processingTime": "string",
          "whCode": "string",
          "qty": 0
        }
      ]
    }
  ]
}
Modified at 2025-05-12 10:53:14
Previous
Get Price and Country Visibility API
Next
Stock Update API
Built with