ScalepointDeveloper Portal

Get

GET
/api/Orders
Authorization<token>

Please enter JWT with Bearer into field

In: header

Query Parameters

Id?string

Internal order service ID

Formatuuid
ExternalId?string

External Id of the order - also known as Order Token

CustomerEmail?string

Email of the customer

CustomerExternalId?string

External Id of the customer

Response Body

curl -X GET "https://example.com/api/Orders"
[  {    "orderNumber": "string",    "createdDate": "2019-08-24T14:15:22Z",    "completedDate": "2019-08-24T14:15:22Z",    "cancelledDate": "2019-08-24T14:15:22Z",    "currencyCode": "string",    "vat": 0.1,    "tax": 0.1,    "netValue": 0.1,    "shipmentCost": 0.1,    "otherCosts": 0.1,    "orderTotal": 0.1,    "discount": 0.1,    "shipmentAddress": {      "line1": "string",      "line2": "string",      "city": "string",      "state": "string",      "postalCode": "string",      "country": "string",      "companyName": "string",      "deliverySalutation": "string",      "deliveryFirstName": "string",      "deliveryLastName": "string",      "deliveryEmail": "string",      "deliveryPhoneNumber": "string"    },    "customer": {      "firstName": "string",      "lastName": "string",      "salutation": "string",      "email": "string",      "phoneNumber": "string",      "address": {        "line1": "string",        "line2": "string",        "city": "string",        "state": "string",        "postalCode": "string",        "country": "string",        "companyName": "string"      },      "externalId": "string"    },    "orderLines": [      {        "productName": "string",        "sku": "string",        "unitNetPrice": 0.1,        "unitVat": 0.1,        "quantity": 0,        "unitDiscount": 0.1,        "total": 0.1,        "shipment": {          "trackingId": "string",          "expectedDeliveryDate": "2019-08-24T14:15:22Z",          "shippedDate": "2019-08-24T14:15:22Z",          "deliveredDate": "2019-08-24T14:15:22Z",          "shippingSupplier": "string",          "shipmentCostNet": 0.1,          "shipmentCostVat": 0.1        },        "voucherInfo": {          "faceValue": 0.1,          "voucherName": "string"        },        "type": 0,        "priceInfo": {          "agreementCompanyId": "string",          "agreementCompanyName": "string",          "category": "string"        },        "externalId": "string",        "billingType": "string"      }    ],    "orderProperties": {      "property1": "string",      "property2": "string"    },    "externalId": "string",    "status": "string"  }]