added

New ability to change a workspace's account product

🏷️ API version: 2025-10

You can now change the account product a workspace is in using the new account_product_id field on the update_workspace mutation.

mutation {
  update_workspace (id: 1234567, attributes: { account_product_id: 98765, name:"Marketing team", description: "This workspace is for the marketing team." }) {
    id
  }
}