Address
Base path: /api/data/address
All address CRUD endpoints are registered but not yet implemented — handlers are empty stubs.
POST /api/data/address
Create a new address record.
Auth: Session cookie required
Tenant: Scoped via x-tenant-id header
Not yet implemented — returns no response.
Address Schema Reference
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Recipient name |
| line1 | string | Yes | Street address line 1 |
| line2 | string | No | Street address line 2 |
| city | string | Yes | City |
| state | string | Yes | State / province |
| postalCode | string | Yes | ZIP / postal code |
| country | string | Yes | Country code (min 2 chars) |
| phone | string | No | Phone number |
GET /api/data/address/:id
Retrieve an address by ID.
Auth: Session cookie required
Tenant: Scoped via x-tenant-id header
Not yet implemented — returns no response.
PATCH /api/data/address/:id
Update an address by ID.
Auth: Session cookie required
Tenant: Scoped via x-tenant-id header
Not yet implemented — returns no response.
DELETE /api/data/address/:id
Delete an address by ID.
Auth: Session cookie required
Tenant: Scoped via x-tenant-id header
Not yet implemented — returns no response.