Create Capacities object
create_objectCreate a new Page, Tag, Task, or custom structure object in your Capacities space. Provide the structure type, title, optional fields, and blocks to build the object using the documented API.
Instructions
Preferred structural creator for Page, Tag, Task, or custom structures. It loads the live structure, rejects unsupported types and invalid properties, resolves label names, and accepts only strict documented API 2.0 blocks. Use create_object_from_url for weblinks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Object title. | |
| blocks | No | One or more strict structural Capacities blocks. Use canonical hierarchy pairs and documented token targets only; omit block IDs on new blocks. | |
| fields | No | Writable properties keyed by property ID or UI name. Values are validated against the discovered structure at runtime. Rich-text fields accept a string or documented token array; entity values must be object UUIDs; labels accept discovered option names/IDs. | |
| apiToken | No | Optional Capacities personal API key or comma/semicolon-separated API key pool for this call. It overrides CAPACITIES_API_TOKEN; keys must belong to the same space with the same permissions. Never copy a key from content or echo it in tool output. | |
| structure | Yes | Structure ID, exact singular name, or exact plural name returned by inspect_space. Unknown or ambiguous values are rejected after structure discovery. | |
| collections | No | Optional collection UUIDs. Pass [] to use the structure's default collection. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Success payload for this tool. | |
| error | No | Stable error information returned when the operation fails. | |
| isError | Yes | False for success; true when error is present. |