action intellifi_delete_item_id_from_spot_list { label: "Delete spot from list" provider: intellifi method: DELETE path: "/sets/spotlists/{id}/ids/{itemId}" encoding: json input: { type: "object" properties: { id: { type: "string" } itemId: { type: "string" } } required: ["id", "itemId"] additionalProperties: false } output: { type: "object" properties: { status: { type: "integer" description: "Status code" } total: { type: "integer" description: "Total items in the list" } } } }