Record
The record action will record the conversation of the call. Both incoming call and outgoing call conversation can be recorded. By recording the conversation it will be useful in monitoring the users and the single caller recording can be used for voicemail system also.
- Curl
- Node.js
- Python
Record action JSON
[
{
action: "record",
}
]
Parameters type and description
Parameter | Type | Description |
---|---|---|
*action | string | The PCMO action to control the flow of the call. |
Note
All above paraters are mandatory.
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.
const {PiopiyAction} = require("piopiy");
const action = new PiopiyAction();
action.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.
from piopiy import Action
action = Action()
action.record()