(Quick Reference)

62 Operation lines - Reference Documentation

Version: 2.1

Table of Contents

62 Operation lines

62.1 List

Service: List order details

Description: This web service return the list of order lines in JSON format.

URL:

https://BASE_URL/api/VERSION/orderDetails

Method: GET

Parameters:

Pagination parameters:

NameDescriptionTypeRequiredPossible values
offsetTells where to start returning records from the entire set of results.IntegerNo 
maxLimits the number of resources requested to return.IntegerNo 
sortOrders the results by the specified field.StringNo 
orderOrders ascending or descendingIntegerNoasc, desc

Filters parameters:

NameDescriptionTypeRequiredExample values
dateCreated_gtFilters by the resource's creation date time and operator greater thanDateno2016-08-15T14:52:48Z
dateCreated_gteFilters by the resource's creation date time and operator greater than or equalDateno 
dateCreated_ltFilters by the resource's creation date time and operator less thanDateno 
dateCreated_lteFilters by the resource's creation date time and operator less than or equalDateno 
lastUpdated_gtFilters by the resource's last-modified date time and operator greater thanDateno 
lastUpdated_gteFilters by the resource's last-modified date time and operator greater than or equalDateno 
lastUpdated_ltFilters by the resource's last-modified date time and operator less thanDateno 
lastUpdated_lteFilters by the resource's last-modified date time and operator less than or equalDateno 
orderReferenceWildcard search by the order's referenceStringnoorderReference=Ref-6*
itemReferenceWildcard search by the resource's item referenceStringnoitemReference=Ref-6* , itemReference=*ef-6 , itemReference=*ef-6*
Dates should be formatted as the ISO-8601 format (YYYY-MM-DDTHH:MM:SSZ)

Success Output

Success case: response.status=200

{
  "paging": {
    "total": 1,
    "max": 100,
    "offset": 0,
    "previous": null,
    "next": null
  },
  "data": [
    {
	  "id": 5,
	  "operationType": "ORDER",
	  "orderReference": "marie_order_2014_12_20",
	  "order": {
	    "id": 5,
	    "reference": "marie_order_2014_12_20",
	    "href": "/api/v1.0/orders/5"
	  },
	  "itemReference": "bracelet-GRP09062",
	  "unitReference": "pcs",
	  "item": {
	    "id": 495,
	    "reference": "bracelet-GRP09062",
	    "name": "Knot Band Bracelet",
	    "href": "/api/v1.0/items/495"
	  },
	  "unit": {
	    "id": 1,
	    "reference": "pcs",
	    "name": "pieces",
	    "href": "/api/v1.0/units/1"
	  },
	  "discount": 0,
	  "finalPrice": 1572,
	  "unitPrice": 26.2,
	  "tax": 0,
	  "quantity": 60,
	  "type": "REGULAR",
	  "comment": null,
	  "soldSerialNumbers": null,
	  "organization": "entity1",
	  "dateCreated": "2015-06-28T23:00:00Z",
	  "lastUpdated": "2015-06-28T23:00:00Z"
	},
	{
	  "id": 1108,
	  "operationType": "INVOICE",
	  "orderReference": "invoice_2016-11-07",
	  "order": {
	    "id": 1109,
	    "reference": "invoice_2016-11-07",
	    "href": "/api/v1.0/orders/1109"
	  },
	  "itemReference": "eliteBook_g2",
	  "unitReference": "pcs",
	  "item": {
	    "id": 775,
	    "reference": "eliteBook_g2",
	    "name": "HP EliteBook 820 G2",
	    "href": "/api/v1.0/items/775"
	  },
	  "unit": {
	    "id": 1,
	    "reference": "pcs",
	    "name": "pieces",
	    "href": "/api/v1.0/units/1"
	  },
	  "discount": null,
	  "customerDiscount": null,
	  "finalPrice": 1750,
	  "unitPrice": 1750,
	  "tax": 77,
	  "quantity": 1,
	  "type": "REGULAR",
	  "comment": null,
	  "soldSerialNumbers": [
	    {
	      "id": 2703547,
	      "value": "8f8c-d43d7ead5d58",
	      "href": "/api/v1.0/serialNumbers/2703547"
	    }
	  ],
	  "organization": "entity1",
	  "dateCreated": "2016-11-07T14:40:48Z",
	  "lastUpdated": "2016-11-07T14:40:48Z"
	},
	…
  ]
}

Failure Output

Failure case:response.status = 400
{
   "error": "invalid_param",
   "error_description": "The parameters [dateCreated_gta] you provided are not valid for this request."
}

Failure case:response.status = 500
{
   "error": "server_error",
   "error_description": "Oops! Something went wrong..."
}

62.2 Show

Service: Show an order detail

Description: Returns the requested order detail in json format when successful. Returns a json response, describing the failure condition when unsuccessful.

URL:

https://BASE_URL/api/VERSION/orderDetails/{id}

Method: GET

Parameters:

NameDescriptionTypeRequiredExample values
idThe numerical ID of the desired order detailLongYes777

Success Output

Success case: response.status=200
{
  "id": 5,
  "operationType": "ORDER",
  "orderReference": "marie_order_2014_12_20",
  "order": {
    "id": 5,
    "reference": "marie_order_2014_12_20",
    "href": "/api/v1.0/orders/5"
  },
  "itemReference": "bracelet-GRP09062",
  "unitReference": "pcs",
  "item": {
    "id": 495,
    "reference": "bracelet-GRP09062",
    "name": "Knot Band Bracelet",
    "href": "/api/v1.0/items/495"
  },
  "unit": {
    "id": 1,
    "reference": "pcs",
    "name": "pieces",
    "href": "/api/v1.0/units/1"
  },
  "discount": 0,
  "customerDiscount": null,
  "finalPrice": 1572,
  "unitPrice": 26.2,
  "tax": 0,
  "quantity": 60,
  "type": "REGULAR",
  "comment": null,
  "soldSerialNumbers": null,
  "organization": "entity1",
  "dateCreated": "2015-06-28T23:00:00Z",
  "lastUpdated": "2015-06-28T23:00:00Z"
}

Failure Output

Failure case:response.status = 404

Failure case:response.status = 400
{
    "error": "invalid_param_type",
    "error_description": "The type of parameter id you provided is not valid for this request."
}