Draft API / SCT Endpoints
The Structured Content Types (SCT) API is part of the Arc XP Draft API. It exposes two resource groups: schema types (the templates that define your content structure) and documents (the individual records that conform to a schema). Both groups are managed through the same authenticated API used for story content in Arc XP.
Schema Management Endpoints
| Method | Path | Description |
|---|---|---|
POST | /draft/v1/schema-type | Create a new schema |
GET | /draft/v1/schema-type | List all schemas in the org |
GET | /draft/v1/schema-type/{name} | Get a single schema by name |
PATCH | /draft/v1/schema-type/{name} | Update a schema (non-breaking only) |
DELETE | /draft/v1/schema-type/{name} | Delete a schema (no documents may exist) |
Schema, Document Management Endpoints
| Method | Path | Description |
|---|---|---|
POST | /draft/v1/document/schema/{name} | Create a new record |
GET | /draft/v1/document/schema/{name} | List records for a schema |
GET | /draft/v1/document/schema/{name}/{id} | Get a single record |
PUT | /draft/v1/document/schema/{name}/{id} | Replace a record (full update) |
PATCH | /draft/v1/document/schema/{name}/{id} | Partial update a record |
DELETE | /draft/v1/document/schema/{name}/{id} | Delete a record |
Loading API docs...