1. Order
Example be.open API
  • be.open API
    • be.open API
    • Auth
      • Get api auth token
    • Attributes & Options
      • get all available attributes
      • add or update an attribute
      • get an attribute
      • adds or updates an option
      • get attribute categories
      • get options of a type
    • Basket
      • get Basket
    • Price
      • get Price list
    • Categories
      • get product categories
      • Returns the products of a category.
    • Products & Combinations
      • get product configuration
      • get option configuration
      • get product attributes
      • get product independant attributes
      • Returns the products.
      • adds or updates a product with attributes, options and combinations.
      • Returns the single product.
      • adds or updates attributes, options and combinations of a product. Used to import combinations in parts
      • delete combinations.
      • get country attribute with options
    • Serviceprovider
      • change attribute settings just for this service provider
      • change option settings just for this service provider
      • change attribute category setting just for this service provider
      • /api/serviceproviders/{serviceproviderId}/orders
      • /api/serviceproviders/{serviceproviderId}/orders/{orderId}
      • /api/serviceproviders/{serviceproviderId}/orders/{orderId}
    • Order
      • create an order
      • create order with upload
      • get order
    • Dashboard API (MOVE TO ANOTHER PROJECT)!
      • Customer
        • whoAmI
        • addExternalClient
      • Orders
        • create order
        • update order
        • update order cart
    • Schemas
      • Schemas
        • Attribute
        • DeleteQuantityShipping
        • DeleteQuantityDelivery
        • Authentication
        • AuthenticationResponse
        • AttributeCategory
        • CreateAttribute
        • CreateOption
        • CategoryModel
        • Product
        • CreateProductCombination
        • DeleteProductCombination
        • BasicOrder
        • Order
        • Option
        • ProductMetaInformation
        • DeleteProductVariant
        • Client
        • OrderDetail
        • OrderCustomField
        • OrderFile
        • OrderUpload
        • File
        • ProductAttribute
        • DeleteProductQuantity
        • PartialDelivery
        • OrderDetailFile
        • ProductCombination
        • Address
        • OrderDetailPrice
        • OrderDetailCombination
        • Address2
        • PriceConfiguration
        • Currency
        • ConfigurationOption
        • Price
        • ConfigurationOptionSize
      • Improved Schemas
        • ExampleAttributesCollection
        • Attribute
        • AttributeMetaData
        • Category
      • Responses
      • Custom Schemas
        • ProductResponse
        • OptionOfAttribute
        • CreateProduct
        • ProductTypeData
        • ProductQuantity
        • QuantityShipping
        • QuantityDelivery
        • LooseLeafData
        • DependableAttribute
        • DependableOption
        • ProductVariant
        • AttributeResponse
        • OrderResponse
        • OrderDetailResponse
        • OrderDetailPage
        • OrderAttributeOption
        • UpdateServiceproviderOrderResponse
        • ServiceproviderOrderDetail
        • BasketPrice
        • OrderAddressResponse
        • AttributeOption
        • CreateOrderAddress
        • CreateOrder
        • PatchServiceProviderOrder
      • placedOrder
  • Druckshop API
    • Cart
      • getByJobNumber
    • Tracking
      • getByJobNumber
      • addTrackingId
    • Order
      • getOrder
        GET
      • getOrders
        GET
      • getOrderByReference
        GET
      • getOrderCart
        GET
    • FreeOrder
      • addFreeOrder
    • Schemas
      • FreeOrder
      • FreeOrderResponse
      • ApiAddress
      • FreeOrderPrice
      • FreeOrderCart
      • FreeOrderArticle
      • FreeOrderDataKeyValuePrice
  1. Order

getOrders

GET
/api/component/Order

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************

Responses

🟢200
application/json
Body

Example
{
    "items": [
        {
            "id": 36,
            "orderNumber": 78,
            "orderDate": "2023-04-27T10:32:12.000000Z",
            "invoiceNumber": "24",
            "totalNet": 16.22,
            "totalGroß": 18.39,
            "carts": [
                {
                    "jobNumber": "3-23-01-05-0003",
                    "status": "STORNO"
                }
            ]
        },
        {
            "id": 39,
            "orderNumber": 81,
            "orderDate": "2023-04-28T10:32:12.000000Z",
            "invoiceNumber": "25",
            "totalNet": 136.02,
            "totalGroß": 158.71,
            "carts": [
                {
                    "jobNumber": "3-23-07-05-0005",
                    "status": "NEU"
                },
                {
                    "jobNumber": "3-23-07-05-0006",
                    "status": "NEU"
                },
                {
                    "jobNumber": "3-23-07-05-0007",
                    "status": "NEU"
                }
            ]
        }
    ],
    "nextCursor": "eyJiZXN0ZWxsdW5nZW4uaWQiOjQwLCJfcG9pbnRzVG9OZXh0SXRlbXMiOnRydWV9",
    "previousCursor": "eyJiZXN0ZWxsdW5nZW4uaWQiOjIxLCJfcG9pbnRzVG9OZXh0SXRlbXMiOmZhbHNlfQ"
}
Modified at 2026-04-10 14:48:20
Previous
getOrder
Next
getOrderByReference
Built with