action orbit_put_workspace_slug_organizations_organization_id { label: "Update an organization" provider: orbit method: PUT path: "/{workspace_slug}/organizations/{organization_id}" encoding: json input: { type: "object" properties: { crm_uid: { type: "string" description: "The unique identifier of the organization in your CRM." } crm_url: { type: "string" description: "A link to the organization profile in your CRM." } deal_closed_date: { type: "string" description: "The date the organization became a customer." } lifecycle_stage: { type: "string" description: "The current stage of the organization in the marketing or sales process." } organization_id: { type: "string" } owner_email: { type: "string" description: "The email of the team member who is in charge of the organization." } owner_name: { type: "string" description: "The name of the team member who is in charge of the organization." } price_plan: { type: "string" description: "The pricing plan the organization is on." } source: { type: "string" description: "The name of the CRM you use for tracking the organization." } workspace_slug: { type: "string" } } required: ["crm_url", "lifecycle_stage", "organization_id", "source", "workspace_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }