action intellifi_update_spot_set { label: "Update existing spotset" provider: intellifi method: PUT path: "/spots/{id}/sets/{setId}" 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" } setId: { type: "string" } } required: ["id", "setId"] 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" } } } }