action intellifi_put_spotsets_id { label: "Update existing spotset" provider: intellifi method: PUT path: "/spotsets/{id}" encoding: json input: { type: "object" properties: { delete: { type: "boolean" description: "Request to delete a set. Remove request needs to be synchronized to the device, so it may take some time before the resource is being removed." } id: { type: "string" } } 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" } } } }