Inventory
Stock items, lots, counts, valuation — read:inventory / write:inventory. Entity-scoped via withTenant; session cookie or Bearer ak_… + entityId query / x-entity-id / JSON on writes.
List inventory (items, transactions, counts, valuation, …)
Authorization
bearerAuth Create keys under Settings → API keys. Prefix ak_. Send as Authorization: Bearer ak_....
In: header
Query Parameters
Entity UUID; must match the API key’s entity when using Bearer auth.
uuiditems | summary | item-options | transactions | counts | count-lines | valuation | lots
Response Body
application/json
application/json
application/json
curl -X GET "https://app.axiomatic.software/api/inventory?entityId=497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}Inventory actions (receive, issue, create item, …)
Authorization
bearerAuth Create keys under Settings → API keys. Prefix ak_. Send as Authorization: Bearer ak_....
In: header
Query Parameters
Entity UUID; must match the API key’s entity when using Bearer auth.
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
curl -X POST "https://app.axiomatic.software/api/inventory?entityId=497f6eca-6276-4993-bfeb-53cbbbba6f08" \ -H "Content-Type: application/json" \ -d '{ "action": "create-item" }'{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}Soft-delete item (discontinued)
Authorization
bearerAuth Create keys under Settings → API keys. Prefix ak_. Send as Authorization: Bearer ak_....
In: header
Query Parameters
Entity UUID; must match the API key’s entity when using Bearer auth.
uuiduuidResponse Body
application/json
application/json
curl -X DELETE "https://app.axiomatic.software/api/inventory?entityId=497f6eca-6276-4993-bfeb-53cbbbba6f08&id=497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"error": "string"
}{
"error": "string"
}Update inventory item
Authorization
bearerAuth Create keys under Settings → API keys. Prefix ak_. Send as Authorization: Bearer ak_....
In: header
Query Parameters
Entity UUID; must match the API key’s entity when using Bearer auth.
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X PUT "https://app.axiomatic.software/api/inventory?entityId=497f6eca-6276-4993-bfeb-53cbbbba6f08" \ -H "Content-Type: application/json" \ -d '{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }'{
"error": "string"
}{
"error": "string"
}