Read the publish-to-web settings of a database
Returns the database's public configuration: whether it is published, its `/wp` slug, whether search engines may index it, and when it was first published. Reads `enabled: false` for a database that has never been published. Requires a signed-in workspace session with `databases:read` on the database; API keys are not accepted on this surface. An unknown database returns a not-publishable error.
Authorization
apiKey Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.
In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/workspaces/string/databases/string/publish"{ "data": { "enabled": true, "slug": "string", "seoIndexed": true, "publishedAt": "string" }}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}Create workspace items from a gallery listing
Instantiates any gallery listing into the calling workspace by its provider-qualified `templateId`, which the registry routes to the provider that owns it, filling declared inputs from `answers` and placing the new root under `parentItemId`. Requires `resources:write` in the workspace, and listings that create many records are checked against its record allowance; an id that is malformed or claimed by no provider returns not-found. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.
Withdraw a database from the web
Disables the database's public page while retaining its slug, so republishing later reuses the same address; a database that was never published is left untouched. Requires a signed-in workspace session with full (`databases:write`) access to the database's item.