Nyehandel
  1. Order
Nyehandel
  • Introduction
  • Getting started
  • Webhooks
  • Filtering
  • API Reference
  • Order
    • Get order
      GET
    • Get orders
      GET
    • Create order
      POST
    • Deliver order
      POST
    • Get delivery notes
      GET
  • Shipping Method
    • Get Shipping methods
      GET
  • Product
    • Relation between products and variants
    • Get products
      GET
    • Update products batch
      PUT
    • Create products batch
      POST
    • Create product
      POST
    • Update product
      PUT
    • Create variant
      POST
    • Find product by sku or id
      GET
    • Delete product
      DELETE
  • Variant
    • Update variant batch
      PUT
    • Update variant
      PUT
    • Delete product variant
      DELETE
    • Find variant
      GET
  • Payment Method
    • Get Payment methods
      GET
  • Customer
    • Get Customer
    • Get Customers
    • Create Customer
  • Category
    • Create category
    • Update category
    • Get category
    • Delete category
    • Get categories
  • Currency
    • Get currencies
  • Headless
    • Pages
      • Get Page
      • Get Pages
    • Categories
      • Get Pages
      • Get Category
    • Startpage
    • System
  1. Order

Get order

GET
/orders/{order_id}
Fetch an order
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/orders/11042' \
--header 'X-Identifier: {{x_identifier}}' \
--header 'Authorization: Bearer {{token}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Response Response Example
{
    "data": {
        "id": 0,
        "currency_iso": "string",
        "order_items": [
            {
                "id": 0,
                "sku": "string",
                "name": "string",
                "type": "string",
                "quantity": "string",
                "unit": "string",
                "vat_rate": 0,
                "unit_price": 0,
                "total_amount": 0,
                "image_url": "string",
                "variant_url": "string"
            }
        ],
        "customer": {
            "id": 0,
            "customer_type": "string",
            "firstname": "string",
            "lastname": "string",
            "email": "string",
            "phone": "string",
            "ssn": "string",
            "created_at": "string",
            "updated_at": "string",
            "billing_address": {
                "address": "string",
                "address2": null,
                "co_address": null,
                "postcode": "string",
                "city": "string",
                "state": null,
                "country": "string",
                "company_name": "string",
                "firstname": "string",
                "lastname": "string"
            },
            "shipping_address": {
                "address": "string",
                "address2": null,
                "co_address": null,
                "postcode": "string",
                "city": "string",
                "state": null,
                "country": "string",
                "company_name": "string",
                "firstname": "string",
                "lastname": "string"
            }
        },
        "billing_address": {
            "address": "string",
            "address2": null,
            "co_address": null,
            "postcode": "string",
            "city": "string",
            "state": null,
            "country": "string",
            "company_name": "string",
            "firstname": "string",
            "lastname": "string"
        },
        "shipping_address": {
            "address": "string",
            "address2": null,
            "co_address": null,
            "postcode": "string",
            "city": "string",
            "state": null,
            "country": "string",
            "company_name": "string",
            "firstname": "string",
            "lastname": "string"
        },
        "shipping": {
            "name": "string",
            "vat_rate": 0,
            "total_amount": 0
        },
        "payment": {
            "name": "string",
            "vat_rate": 0,
            "total_amount": 0
        },
        "created_at": "string",
        "updated_at": "string"
    }
}

Request

Path Params
order_id
string 
required
Example:
11042
Header Params
X-Identifier
string 
optional
Example:
{{x_identifier}}
Authorization
string 
optional
Example:
Bearer {{token}}
Accept
string 
optional
Example:
application/json
Content-Type
string 
optional
Example:
application/json

Responses

🟢200OK
application/json
Body
data
object 
required
id
integer 
required
currency_iso
string 
required
order_items
array [object {11}] 
required
customer
object 
required
billing_address
object 
required
shipping_address
object 
required
shipping
object 
required
payment
object 
required
created_at
string 
required
updated_at
string 
required
Modified at 2025-06-27 09:31:41
Previous
Filtering
Next
Get orders
Built with