Documentation Index
Fetch the complete documentation index at: https://docs.ivory.finance/llms.txt
Use this file to discover all available pages before exploring further.
Overview
GET /v1/admin/tenants/{slug}/status returns the current provisioning state plus a log of completed and failed steps. Poll this endpoint after calling POST /v1/admin/tenants to track the 9-step pipeline.
Path parameters
The tenant slug (e.g.
acme-bank).Response
UUID of the tenant.
The tenant slug.
Current pipeline state:
| Value | Meaning |
|---|---|
provisioning | Pipeline is actively running |
active | All 9 steps completed — tenant is live |
failed | A step failed — see last_error and failed_steps |
deprovisioned | Tenant has been soft-deactivated |
List of step identifiers that succeeded (e.g.
["step_1", "step_2", "step_3"]).List of step identifiers that failed. Typically has one entry before the pipeline halts.
Error message from the most recent failure, if any.
ISO 8601 timestamp of the last state change.
Examples
On failure, re-posting to
POST /v1/admin/tenants with the same slug will automatically resume from the last completed step.Error responses
| Code | Reason |
|---|---|
404 | No tenant found with that slug |

