*** id: 7b39ae3a-293f-4217-b79c-92297fffa866 title: stop\_tap slug: /reference/stop-tap description: Stop an active tap stream. max-toc-depth: 3 ---------------- Stop an active tap stream. An object that accepts the following properties. ## **Properties** ID of the tap to stop ## **Variables** Read by the method: * **tap\_control\_id:** (in) Control ID of last tap stream started. Set by the method: * **stop\_tap\_result:** (out) Success or failed. ## **Examples** ### Stop the last call tap ```yaml version: 1.0.0 sections: main: - stop_tap: {} ``` ```json { "version": "1.0.0", "sections": { "main": [ { "stop_tap": {} } ] } } ``` ### Stop a specific call tap ```yaml version: 1.0.0 sections: main: - stop_tap: control_id: my-tap-id ``` ```json { "version": "1.0.0", "sections": { "main": [ { "stop_tap": { "control_id": "my-tap-id" } } ] } } ```