Get site properties (yekar.wix.get-site-properties) | Read | The connected site's own settings: display name, business name and description, contact email and phone, timezone, locale, and the languages a multilingual site serves. Run it first to confirm which Wix site the connection's Site ID actually points at. |
Query blog posts (yekar.wix.query-blog-posts) | Read | PUBLISHED blog posts on the site, filtered and sorted with Wix's own query syntax. Drafts and scheduled posts are NOT here - they live in Query draft posts. Bodies are omitted unless includeContent is set, and are flattened to plain text when they are. |
Get blog post (yekar.wix.get-blog-post) | Read | One published blog post with its body. The body is Wix's Ricos rich content flattened to plain text - links, images and formatting are dropped, so this is a reading aid, not the post's source. Use Update draft post to change it. |
List blog categories (yekar.wix.list-blog-categories) | Read | The blog's categories with their ids and Wix's own per-category post counts. The ids are what Create draft post and Update draft post take in categoryIds - a category NAME is not accepted there. |
Query draft posts (yekar.wix.query-draft-posts) | Read | The blog's draft posts - unpublished, scheduled, and the draft rows behind published posts. Every row carries the revision that Update draft post requires, so read from here before editing. |
Create draft post (yekar.wix.create-draft-post) | Write | Create a blog post as a DRAFT - it is not visible on the site until Publish draft post is called. The body is Wix Ricos: pass plain text and it is converted to paragraphs, or pass a Ricos document directly. Sending markdown or HTML as bodyText stores the raw characters; it does not render. |
Update draft post (yekar.wix.update-draft-post) | Write | Edit a draft post. Only the fields you send change - but a body you send REPLACES the old one entirely. Editing the draft behind an already-published post does NOT change the live post until Publish draft post is called again. Requires the draft's current revision. |
Publish draft post (yekar.wix.publish-draft-post) | Write | Publish a draft post to the live blog. This is the step that makes it public - and republishing an already-published post is how an edit reaches the live site. The published post gets its own id, returned here. |
Query contacts (yekar.wix.query-contacts) | Read | The site's CRM contacts, filtered and sorted with Wix's own query syntax. Every row carries the revision Update contact requires. These are real people's contact details - read them for the task at hand, do not copy them anywhere they were not already going. |
Get contact (yekar.wix.get-contact) | Read | One CRM contact: names, every email and phone on the record, company, labels and activity dates - plus the revision Update contact requires. Read this immediately before an update; a revision fetched long ago will be rejected. |
Create contact (yekar.wix.create-contact) | Write | Add a contact to the site's CRM. By default Wix REFUSES to create one whose email or phone already exists - that rejection is a feature, and allowDuplicates true is how you override it deliberately. Supply at least a name, an email or a phone. |
Update contact (yekar.wix.update-contact) | Write | Update a CRM contact. Requires the contact's current revision - Wix rejects a stale one rather than overwriting whatever changed in between, so read the contact first. Email and phone REPLACE the record's lists rather than appending to them. |
List data collections (yekar.wix.list-data-collections) | Read | The site's CMS (Wix Data) collections and their field keys and types. Read this before touching items: a data item's keys are the collection's FIELD KEYS, which are not the display names shown in the Wix editor. |
Query data items (yekar.wix.query-data-items) | Read | Rows from a Wix Data collection, filtered and sorted with Wix's own query syntax. Field keys come from List data collections. Long text values are capped for the prompt and the fields that were cut are named. |
Insert data item (yekar.wix.insert-data-item) | Write | Add a row to a Wix Data collection. Whether the row is visible on the live site depends on the collection's own permissions and on whether the site is published - inserting is not publishing. |
Update data item (yekar.wix.update-data-item) | Write | Replace a row in a Wix Data collection. This is a REPLACE, not a merge: fields you leave out are cleared. Read the item with Query data items, change what you need, and send the whole thing back. |
Remove data item (yekar.wix.remove-data-item) | Write | Permanently delete a row from a Wix Data collection. Wix Data has no trash for items - this cannot be undone, and anything on the site that referenced the row will stop finding it. |
Search orders (yekar.wix.search-orders) | Read | The store's eCommerce orders with buyer, totals, payment and fulfilment status, and line items. Money keeps Wix's own decimal strings - they are not floats. Cursor-paged: Wix often declines to count large result sets, in which case total is null rather than a guess. |
Get order (yekar.wix.get-order) | Read | One eCommerce order in full: buyer, line items with SKUs and quantities, the price breakdown, and its payment and fulfilment status. Money keeps Wix's own decimal strings. |