MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / source_delete

Method source_delete

tests/utils/api_client.py:611–613  ·  view source on GitHub ↗

Delete a source by ID (Commercial only; sourceId >= 1).

(self, source_id: int)

Source from the content-addressed store, hash-verified

609 return result.get("sourceId", -1)
610
611 def source_delete(self, source_id: int) -> None:
612 """Delete a source by ID (Commercial only; sourceId >= 1)."""
613 self.command("project.source.delete", {"sourceId": source_id})
614
615 def source_update(self, source_id: int, **kwargs) -> None:
616 """Update source fields. Accepted kwargs: title, busType, frameStart,

Calls 1

commandMethod · 0.95