Tax Rates
Endpoints
- List
- Create
- View
- Update
- Delete
List
URL: /api/json/tax-rates/
Method: GET
Arguments (optional)
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
Create
URL: /api/json/tax-rates/
Method: POST
Arguments
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/
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
Update
URL: /api/json/tax-rates/1/
Method: POST
Arguments
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
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
Updated over 3 years ago