(Quick Reference)

41 Taxes - Reference Documentation

Version: 2.1

41 Taxes

41.1 List

Service: List taxes

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

URL:

https://BASE_URL/api/VERSION/taxes

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 
itemReferenceWildcard search by the item's referenceStringnoitemReference=Ref-6*
taxListReferenceWildcard search by the tax-list's referenceStringno 
Dates should be formatted as the ISO-8601 format (YYYY-MM-DDTHH:MM:SSZ)

Success Output

Success case: response.status=200

{
  "paging": {
    "total": 780,
    "max": 5,
    "offset": 0,
    "previous": null,
    "next": "/api/v1.0/taxes?max=5&offset=5&sort=dateCreated&order=asc"
  },
  "data": [
    {
      "id": 1367,
      "itemReference": "bracelet-GRP09062",
      "item": {
        "id": 519,
        "reference": "bracelet-GRP09062",
        "name": "Knot Band Bracelet",
        "href": "/api/v1.0/items/519"
      },
      "taxListReference": "20_tax_list",
      "taxList": {
        "id": 7,
        "reference": "20_tax_list",
        "name": "VAT 20%",
        "href": "/api/v1.0/taxLists/7"
      },
      "taxValue": 24,
      "organization": "entity1",
      "dateCreated": "2016-02-10T13:36:18Z",
      "lastUpdated": "2016-02-10T13:36:18Z"
    }
  ]
}

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..."
}

41.2 Show

Service: Show a tax

Description: This web service return an existing tax of the specified id in JSON format

Method: GET

URL:

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

Parameters:

NameDescriptionTypeRequiredExample values
idThe numerical ID of the desired taxLongYes777

URL with external_id:

https://BASE_URL/api/VERSION/taxes/reference/{itemListId}/{itemId}

Parameters:

NameDescriptionTypeRequiredExamples values
itemIdreference of the itemStringNoeliteBook_820
taxListIdreference of the tax listStringYesTL-001

Success Output

Success case: response.status=200
{
  "id": 1367,
  "itemReference": "bracelet-GRP09062",
  "item": {
    "id": 519,
    "reference": "bracelet-GRP09062",
    "name": "Knot Band Bracelet",
    "href": "/api/v1.0/items/519"
  },
  "taxListReference": "20_tax_list",
  "taxList": {
    "id": 7,
    "reference": "20_tax_list",
    "name": "VAT 20%",
    "href": "/api/v1.0/taxLists/7"
  },
  "taxValue": 24,
  "organization": "entity1",
  "dateCreated": "2016-02-10T13:36:18Z",
  "lastUpdated": "2016-02-10T13:36:18Z"
}

Failure Output

Failure case:response.status = 404
{
  "error": "not_found",
  "error_description": "The tax with the id 10 doesn't exist."
}

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

41.3 Create

Service: Create a tax

Description: Returns the created tax in json format when successful. Returns a json response, describing the failure condition when unsuccessful.

URL:

https://BASE_URL/api/VERSION/taxes

Method: POST

Request content type: application/json

Parameters:

NameDescriptionTypeRequiredExample values
itemIdThe ID of item. Required if tax type of list is not Fixed amountLong/String- 
taxListIdThe ID of tax-listLong/Stringyes 
taxValueThe tax valueDoubleyes 
useExternalIdBy default, it is set to false. set it to true if you want to use external ids.Booleannotrue , false

Success Output

Status: HTTP/1.1 201 Created

{
  "id": 1367,
  "itemReference": "bracelet-GRP09062",
  "item": {
    "id": 519,
    "reference": "bracelet-GRP09062",
    "name": "Knot Band Bracelet",
    "href": "/api/v1.0/items/519"
  },
  "taxListReference": "20_tax_list",
  "taxList": {
    "id": 7,
    "reference": "20_tax_list",
    "name": "VAT 20%",
    "href": "/api/v1.0/taxLists/7"
  },
  "taxValue": 24,
  "organization": "entity1",
  "dateCreated": "2016-02-10T13:36:18Z",
  "lastUpdated": "2016-02-10T13:36:18Z"
}

Failure Output

Status: HTTP/1.1 400 Bad Request

{
  "error": "save_failed",
  "error_description": "Failed to save instance"
}
{
  "error": "not_unique",
  "error_description": "tax already used"
}
{
  "error": "invalid_param_type",
  "error_description": "An invalid value was specified for parameter: taxValue (must be positive)"
}

Status: HTTP/1.1 404 Not Found
{
  "error": "not_found",
  "error_description": "The item with the id 4945 doesn't exist."
}
{
  "error": "not_found",
  "error_description": "The taxList with the id 457 doesn't exist."
}

41.4 Update

Service: Update a tax

Description: Returns the updated tax in json format when successful. Returns a json response, describing the failure condition when unsuccessful.

Method: PUT

Request content type: application/json

URL:

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

Parameters:

NameDescriptionTypeRequiredExample values
idThe numerical ID of the desired taxLongyes123
itemIdThe numerical ID of item. Required if tax type of list is not Fixed amountLong- 
taxListIdThe numerical ID of tax-listLongyes 
taxValueThe tax valueDoubleyes 
useExternalIdBy default, it is set to false. set it to true if you want to use external ids.Booleannotrue , false

URL with external_id:

https://BASE_URL/api/VERSION/taxes/reference/{itemListId}/{itemId}

Parameters:

NameDescriptionTypeRequiredExamples values
itemIdreference of the itemStringNoeliteBook_820
taxListIdreference of the tax listStringYesTL-001
taxValueThe tax valueDoubleyes 

Success Output

Status: HTTP/1.1 200 OK

{
  "id": 1367,
  "itemReference": "bracelet-GRP09062",
  "item": {
    "id": 519,
    "reference": "bracelet-GRP09062",
    "name": "Knot Band Bracelet",
    "href": "/api/v1.0/items/519"
  },
  "taxListReference": "20_tax_list",
  "taxList": {
    "id": 7,
    "reference": "20_tax_list",
    "name": "VAT 20%",
    "href": "/api/v1.0/taxLists/7"
  },
  "taxValue": 24,
  "organization": "entity1",
  "dateCreated": "2016-02-10T13:36:18Z",
  "lastUpdated": "2016-02-10T14:40:00Z"
}

Failure Output

Status: HTTP/1.1 404 Not Found
{
  "error": "not_found",
  "error_description": "The tax with the id 70 doesn't exist."
}
{
  "error": "not_found",
  "error_description": "The item with the id 4945 doesn't exist."
}
{
  "error": "not_found",
  "error_description": "The taxList with the id 457 doesn't exist."
}

Status: HTTP/1.1 400 Bad Request
{
  "error": "save_failed",
  "error_description": "Failed to save instance"
}
{
  "error": "invalid_param_type",
  "error_description": "An invalid value was specified for parameter: taxValue (must be a Double)"
}

41.5 Upsert

Service: Upsert a tax

Description: This web service is used to insert a tax object to the database if it does not already exist, or update it.

URL with external_id:

https://BASE_URL/api/VERSION/taxes/reference/{taxListId}/{itemId}

Method: POST

Request content type: application/json

Parameters:

NameDescriptionTypeRequiredExample values
itemIdThe ID of item. Required if tax type of list is not Fixed amountLong/String- 
taxListIdThe ID of tax-listLong/Stringyes 
taxValueThe tax valueDoubleyes 
useExternalIdBy default, it is set to false. set it to true if you want to use external ids.Booleannotrue , false

Success Output

Status: HTTP/1.1 201 Created

{
  "id": 1367,
  "itemReference": "bracelet-GRP09062",
  "item": {
    "id": 519,
    "reference": "bracelet-GRP09062",
    "name": "Knot Band Bracelet",
    "href": "/api/v1.0/items/519"
  },
  "taxListReference": "20_tax_list",
  "taxList": {
    "id": 7,
    "reference": "20_tax_list",
    "name": "VAT 20%",
    "href": "/api/v1.0/taxLists/7"
  },
  "taxValue": 24,
  "organization": "entity1",
  "dateCreated": "2016-02-10T13:36:18Z",
  "lastUpdated": "2016-02-10T13:36:18Z"
}

Failure Output

Status: HTTP/1.1 400 Bad Request

{
  "error": "save_failed",
  "error_description": "Failed to save instance"
}
{
  "error": "not_unique",
  "error_description": "tax already used"
}
{
  "error": "invalid_param_type",
  "error_description": "An invalid value was specified for parameter: taxValue (must be positive)"
}

Status: HTTP/1.1 404 Not Found
{
  "error": "not_found",
  "error_description": "The item with the id 4945 doesn't exist."
}
{
  "error": "not_found",
  "error_description": "The taxList with the id 457 doesn't exist."
}

41.6 Delete

Service: Delete a tax

Description: Returns a json response.

Method: DELETE

URL:

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

Parameters:

NameDescriptionTypeRequiredExample values
idThe numerical ID of the desired taxLongyes123

URL with external_id:

https://BASE_URL/api/VERSION/taxes/reference/{itemListId}/{itemId}

Parameters:

NameDescriptionTypeRequiredExamples values
itemIdreference of the itemStringNoeliteBook_820
taxListIdreference of the tax listStringYesTL-001

Success Output

Status: HTTP/1.1 200 OK

{
  "success": "true",
  "success_description": "Instance deleted successfully"
}

Failure Output

Status: HTTP/1.1 400 Bad Request

{
  "error": "delete_failed",
  "error_description": "Failed to delete instance."
}

Status: HTTP/1.1 404 Not Found

{
  "error": "not_found",
  "error_description": "The tax with the id 70 doesn't exist."
}