action uebermaps_delete_maps_map_id_spots_spot_id_respot { label: "Delete respot from map by spot id" description: "Delete respot from map by spot id." provider: uebermaps method: DELETE path: "/maps/{map_id}/spots/{spot_id}/respot" encoding: json input: { type: "object" properties: { map_id: { type: "string" } spot_id: { type: "string" } } required: ["map_id", "spot_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }