Skip to documentation
Plivo integration

Make Call

Perform Make Call through Plivo.

View as Markdown
plivo_make_call
writeplivo

Inputs

  • from_number
    text
    From Number

    Optional text value.

  • to_number
    expressionrequired
    To Number

    Required literal value or workflow expression.

  • answer_url
    textrequired
    Answer Url

    Required text value.

  • ring_url
    text
    Ring Url

    Optional text value.

  • hangup_url
    text
    Hangup Url

    Optional text value.

  • fallback_url
    text
    Fallback Url

    Optional text value.

Outputs

  • successSuccess
  • call_uuidCall Uuid
  • request_uuidRequest Uuid
  • 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": [
    "to_number",
    "answer_url"
  ],
  "properties": {
    "ring_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to_number": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "answer_url": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "hangup_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "from_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "fallback_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "success": {},
    "call_uuid": {},
    "request_uuid": {},
    "provider_response": {}
  },
  "additionalProperties": true
}
View all Plivo actions