Record
To record a call session in the PCMO platform, you can use the record() method in the PiopiyAction class. This method allows you to start recording the call without needing any parameters.
record()
- No parameters. Starts recording the call.
Example Implementation
- The following code demonstrates how to record a call session:
- Node.js
- Python
const { PiopiyAction } = require("piopiy");
const action = new PiopiyAction();
action.record()
from piopiy import Action
# Create an instance of the Action class
action = Action()
action.record()