action intellifi_update_kv_pair { label: "Update existing Key-value pair" provider: intellifi method: PUT path: "/kvpairs/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } kv_value: { description: "The value of the key value pair." type: "object" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { resource: { type: "object" properties: { id: { type: "string" description: "Unique identifier for resource." } url: { type: "string" description: "Url to the individual resource." } } } status: { type: "integer" description: "Status code" } } } }