# Postman collection
Import **Architect-SDK-API.postman_collection.json** into Postman (File → Import → select the file). It includes Common (health, ready, version, info, spec), Config (package + all config GET/POST), and entity CRUD for Users, Orders, and the sample/sample_ecommerce packages.
## Collection variables
- **base_url**: `http://localhost:3000` — change if your server runs elsewhere.
- **tenant_id**: **Required.** Must match a tenant id in `architect._sys_tenants`. Sent as `X-Tenant-ID` on all config, package, and entity API requests. The example server seeds two tenants: **default-mode-1** (database), **default-mode-3** (rls). Collection default is `default-mode-3`.
- **user_id**: Set after creating a user (e.g. from the Create User response) so Read/Update/Delete User and Create Order can use it.
- **order_id**: Set after creating an order so Read/Update/Delete Order can use it.
- **package_sample**, **package_ecommerce**: Package ids for sample and sample_ecommerce (used in `/api/v1/package/{{package_sample}}/...` and `/api/v1/package/{{package_ecommerce}}/...`).
## System columns
Every table gets three columns added by default (no need to put them in config):
- **created_at** (timestamptz, NOT NULL, default NOW())
- **updated_at** (timestamptz, NOT NULL, default NOW(); set to NOW() on every update)
- **archived_at** (timestamptz, nullable; use for soft-delete)
Responses include these fields. You do not need to send them on create; you can optionally set **archived_at** when archiving a row.
## Install Package (POST /api/v1/config/package)
Use **Body → form-data** (not raw). Add a row with key **file** (or **package**), set type to **File**, and select your .zip file. Set **X-Tenant-ID** (e.g. `default-mode-1`). **Do not add a Content-Type header** — Postman will send `multipart/form-data` with the correct boundary. If you see "Invalid boundary for multipart/form-data", remove any manual Content-Type header for this request.
**curl:** `curl -X POST "http://localhost:3000/api/v1/config/package" -H "X-Tenant-ID: default-mode-1" -F "file=@/path/to/ecommerce.zip"` (do not set `-H "Content-Type: ..."`; curl adds the boundary automatically with `-F`).
## Folders
- **Common**: Health, Ready, Version, Info, **Spec** (GET `/spec` returns OpenAPI JSON for entity APIs; no `/api/v1` prefix for these).
- **Config**: Install Package (POST `/api/v1/config/package`, multipart zip with manifest.json + config JSONs), then GET/POST for schemas, enums, tables, columns, indexes, relationships, api_entities, kv_stores (under `/api/v1/config/...`). **X-Tenant-ID is required** for all config and package requests. The sample config omits created_at/updated_at/archived_at; they are added automatically.
- **Users**: List (with optional filters and limit/offset), Create, Read, Update, Delete, Bulk Create, Bulk Update (under `/api/v1/users`). **X-Tenant-ID is required** for all entity requests.
- **Orders**: Same operations for orders (under `/api/v1/orders`). List supports filters (e.g. `?status=pending&user_id=...`).
- **Sample (package: sample)**, **Sample E-commerce (package: sample_ecommerce)**: Package-scoped entity APIs; use **package_sample** and **package_ecommerce** variables in URLs. Under Sample E-commerce, **KV Store** provides List Keys, Get Key, Put Key, and Delete Key for `/api/v1/package/{{package_ecommerce}}/kv/:namespace` and `.../kv/:namespace/:key` (e.g. namespace `user_prefs`, key `theme`).
Start the server with `cargo run --example server` before running requests. The server seeds two tenants automatically (default-mode-1, default-mode-3). Use `X-Tenant-ID: default-mode-3` for RLS, or `default-mode-1` for database strategy.