Skip to documentation
Plivo integration

Start Call Recording

Perform Start Call Recording through Plivo.

View as Markdown
plivo_start_call_recording
writeplivo

Inputs

  • call_uuid
    expressionrequired
    Call Uuid

    Required literal value or workflow expression.

  • time_limit
    number
    Time Limit

    Optional numeric value.

  • file_format
    select
    File Format

    Optional selected identifier or value.

    Options: MP3 ("mp3"), WAV ("wav")

  • transcription_type
    text
    Transcription Type

    Optional text value.

  • transcription_url
    text
    Transcription Url

    Optional text value.

  • callback_url
    text
    Callback Url

    Optional text value.

Outputs

  • successSuccess
  • provider_responseProvider Response

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "call_uuid"
  ],
  "properties": {
    "call_uuid": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "time_limit": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "file_format": {
      "enum": [
        "mp3",
        "wav"
      ],
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "callback_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "transcription_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "transcription_type": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "success": {},
    "provider_response": {}
  },
  "additionalProperties": true
}
View all Plivo actions