action id4i_update_api_key { label: "Update API keys" description: "API keys can be updated with new labels, and be activated and deactivated. The secret or UUID cannot be changed." provider: id4i method: PUT path: "/api/v1/apikeys/{key}" encoding: json input: { type: "object" properties: { active: { type: "boolean" } key: { type: "string" } newLabel: { type: "string" } } required: ["key", "newLabel"] additionalProperties: false } output: { type: "object" additionalProperties: true } }