E075: Bulk-import materials
POST /api/materials/bulk-import
Creates many materials at once from an uploaded CSV or Excel file. Triggered from the Data page, Materials import. Atomic.
Authentication
Standard tenant route. Requires Authorization: Bearer <firebase-id-token> and X-Org-Id: <org-id>. Access: Admin.
Request
{ "rows": [ { "code": "MAT-001", "name": "...", "materialTypeName": "Raw", "unit": "kg" } ] }
Response — 200 OK
{ "data": [ { "index": 0, "status": "ok", "id": "uuid" } ] }
Errors
| HTTP | code | Condition |
|---|---|---|
| 422 | validation_failed | Top-level shape malformed. |
Workflow
Calls W075 Bulk-import materials.