API for managing qashio erp system
Qashio ERP APIs (1.0)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developers.qashio.com/_mock/api-connector/
Sandbox
https://erp.qashio.io/
- Mock server
https://developers.qashio.com/_mock/api-connector/erp-tax-rates
- Sandbox
https://erp.qashio.io/erp-tax-rates
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developers.qashio.com/_mock/api-connector/erp-tax-rates?page=1&limit=10&status=draft&updatedAtFrom=2024-01-01&updatedAtTo=2025-12-31&createdAtFrom=2024-01-01&createdAtTo=2025-12-31&isDeleted=true&countryCode=US&totalTaxRate=12.5&taxRateCode=VAT&remoteName=Fuel&remoteId=123' \
-H 'companyId: string' \
-H 'x-api-key: string'Response
application/json
[ { "page": 1, "totalPages": 1, "total": 1, "data": [ … ] } ]
- Mock server
https://developers.qashio.com/_mock/api-connector/erp-tax-rates/{id}
- Sandbox
https://erp.qashio.io/erp-tax-rates/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.qashio.com/_mock/api-connector/erp-tax-rates/AccountName \
-H 'companyId: string' \
-H 'x-api-key: string'Returns a ERP Supplier
Example: {"id":"a01bce14-a29a-4104-a350-1d48ec371729","name":"Company 46","businessLegalName":"Business Legal Name 46","companyCountry":"US","parentCompanyId":"a01bce14-a29a-4104-a350-1d48ec371739","status":"active","isDeleted":false,"createdAt":"2025-02-10T11:52:53.007Z","updatedAt":"2025-02-10T11:52:53.007Z"}
Response
application/json
{ "id": "fdce2210-0ab9-4e59-bf3e-46a9e87f755b", "remoteId": "remote-001", "remoteName": "Cash Account", "taxRateCode": "TAX_RATE_01", "totalTaxRate": 15.5, "status": "active", "countryCode": "US", "isDeleted": false, "createdAt": "2024-02-05T12:00:00Z", "updatedAt": "2024-02-05T12:30:00Z", "erpCompany": { "id": "a01bce14-a29a-4104-a350-1d48ec371729", "name": "Company 46", "businessLegalName": "Business Legal Name 46", "companyCountry": "US", "parentCompanyId": "a01bce14-a29a-4104-a350-1d48ec371739", "status": "active", "isDeleted": false, "createdAt": "2025-02-10T11:52:53.007Z", "updatedAt": "2025-02-10T11:52:53.007Z" } }