Master data
Reference catalogs (accounts, types).
- Base URL:
https://api.aikount.com - Every call requires the header
Authorization: Bearer <token>(Authentication and API keys).
| Method | Path | What for | Parameters |
|---|---|---|---|
GET | /numbering | List Numbering | — |
POST | /numbering | Create Numbering | — |
DELETE | /numbering/{series_id} | Delete Numbering | series_id* |
PATCH | /numbering/{series_id} | Update Numbering | series_id* |
POST | /numbering/{series_id}/next | Next Numbering | series_id* |
GET | /products | List Products | search, limit, offset |
POST | /products | Create Product | — |
DELETE | /products/{product_id} | Delete Product | product_id* |
GET | /products/{product_id} | Get Product | product_id* |
PATCH | /products/{product_id} | Update Product | product_id* |
GET | /taxes | List Taxes | context |
POST | /taxes | Create Tax | — |
GET | /taxes/{tax_id} | Get Tax | tax_id* |
PATCH | /taxes/{tax_id} | Update Tax | tax_id* |
Full detail (parameters, bodies and schemas) lives in OpenAPI/Swagger. Parameters marked
*are required.