Tax Rates

Endpoints

  • List
  • Create
  • View
  • Update
  • Delete

List

URL: /api/json/tax-rates/
Method: GET

Arguments (optional)

369

cURL

curl https://mobile.quickswipe.com/api/json/tax-rates/?token=516c579c-bdf8-4a6a-a5e4- 46030abbf85e

Response

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8

354

Create

URL: /api/json/tax-rates/
Method: POST

Arguments

242

cURL

curl https://mobile.quickswipe.com/api/json/tax-rates/?token=516c579c-bdf8-4a6a-a5e4- 46030abbf85e \\ \-d "name=State Tax" \\ \-d "amount=7.25" \\

Response

HTTP/1.1 201 Created
Content-Type: application/json; charset=UTF-8
Location: /api/json/tax-rates/1/

325

View

URL: /api/json/tax-rates/1/
Method: GET

cURL

curl https://mobile.quickswipe.com/api/json/tax-rates/1/?token=516c579c-bdf8-4a6a-a5e4- 46030abbf85e

Response

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8

325

Update

URL: /api/json/tax-rates/1/
Method: POST

Arguments

144

cURL

curl https://mobile.quickswipe.com/api/json/tax-rates/1/?token=516c579c-bdf8-4a6a-a5e4- 46030abbf85e \\ \-d "name=State Tax" \\ \-d "amount=6.25"

Response

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8

325

Delete

URL: /api/json/tax-rates/1/
Method: DELETE

cURL

curl https://mobile.quickswipe.com/api/json/tax-rates/1/?token=516c579c-bdf8-4a6a-a5e4- 46030abbf85e \\ -X DELETE


Response

HTTP/1.1 204 No Content