(Quick Reference) Service: List

Description: This web service return the list of employeeWarehouses data in JSON Format

URL:

https://BASE_URL/api/VERSION/employeeWarehouses

Method: GET

Parameters:

Pagination parameters:

NameDescriptionTypeRequiredPossible values
offsetTells where to start returning records from the entire set of resultsIntegerNo 
maxlimits the number of resources requested to returnIntegerNo 
sortOrders the results by the specified fieldStringNo 
orderOrders ascending (ASC) or descending DESCIntegerNoasc, 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 
warehouseReferenceWildcard search by the resource's referenceStringnowarehouseReference=Ref-6* , warehouseReference=*ef-6 , warehouseReference=*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": 3,
        "max": 100,
        "offset": 0,
        "previous": null,
        "next": null
    },
    "data": [
        {
            "id": 6,
            "organization": "Lyon",
            "warehouseReference": "Ref-01",
            "employeeReference": "emp-006",
            "employee": {
                "id": 6,
                "reference": "emp-006",
                "href": "/api/v1/users/6"
            },
            "warehouse": {
                "id": 1,
                "reference": "Ref-01",
                "name": "Main warehouse ",
                "href": "/api/v1/warehouses/1"
            },
            "dateCreated": "2016-03-17T08:39:15Z",
            "lastUpdated": "2016-03-17T08:39:15Z"
        },
        {
            "id": 10,
            "organization": "Lyon",
            "warehouseReference": "ref test WareHouse",
            "employeeReference": "ref test Employee",
            "employee": {
                "id": 19,
                "reference": "ref test Employee",
                "href": "/api/v1/users/19"
            },
            "warehouse": {
                "id": 18,
                "reference": "ref test WareHouse",
                "name": "test name",
                "href": "/api/v1/warehouses/18"
            },
            "dateCreated": "2016-07-19T13:41:54Z",
            "lastUpdated": "2016-07-19T13:41:54Z"
        },
        {
            "id": 11,
            "organization": "Lyon",
            "warehouseReference": "ref test WareHouse",
            "employeeReference": "ref test Employee",
            "employee": {
                "id": 20,
                "reference": "ref test Employee",
                "href": "/api/v1/users/20"
            },
            "warehouse": {
                "id": 18,
                "reference": "ref test WareHouse",
                "name": "test name",
                "href": "/api/v1/warehouses/18"
            },
            "dateCreated": "2016-07-19T13:41:54Z",
            "lastUpdated": "2016-07-19T13:41:54Z"
        }
    ]
}

Failure Output

Failure case:response.status = 400
{
   "error": "invalid_param",
   "error_description": "The parameters [dateCreated_gta] you provided are not valid for this request."
}
{
    "error": "invalid_datetime_format",
    "error_description": "Invalid datetime filter (not ISO-8601 formatted): [2016-08-1Z]"
}

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