action id4i_update_organization { label: "Update organization" provider: id4i method: PUT path: "/api/v1/organizations/{organizationId}" encoding: json input: { type: "object" properties: { name: { type: "string" description: "The name of the organization" } organizationId: { type: "string" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" description: "An organization" required: ["name", "namespace"] properties: { id: { type: "integer" format: "int64" description: "The id of the organization ( Deprecated: Use namespace instead. )" } logoURL: { type: "string" description: "URL to a logo of the organization" } name: { type: "string" description: "The name of the organization" } namespace: { type: "string" description: "The namespace of the organization" } } } }