action id4i_set_organization_logo { label: "Update organization logo" description: "Updating an organization logo using a multipart file upload." provider: id4i method: POST path: "/api/v1/organizations/{organizationId}/logo" encoding: json input: { type: "object" properties: { organizationId: { type: "string" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" properties: { uri: { type: "string" description: "The uri/url of the image" } } } }