DocumentaciónReferencia APIListar plantillas de automatización
    GETDisponible

    Listar plantillas de automatización

    Operación autenticada de la API de BeepCall.

    https://app.beepcall.ai/api/user/automate/templates

    Parámetros

    Authorization*headerBearer tokenClave de API de BeepCall.

    * Obligatorio

    Ejemplo de solicitud

    curl -X GET "https://app.beepcall.ai/api/user/automate/templates" \
      -H "Authorization: Bearer YOUR_API_KEY"

    Respuesta

    json
    {
      "data": [
        {
          "key": "post-call-qualified-to-sheets",
          "name": "Save qualified leads to Google Sheets",
          "description": "After each call, if the AI marked the caller as qualified, appends a row (phone, name, summary, status) to your Google Sheet.",
          "use_when": "The user wants qualified calls or call outcomes collected in a spreadsheet automatically.",
          "binding": "post_call",
          "requires_assistant": true,
          "required_connections": [
            "google-sheets"
          ],
          "side_effects": false,
          "params": [
            {
              "key": "spreadsheet_id",
              "label": "Google Spreadsheet ID",
              "description": "The spreadsheet to append rows to.",
              "required": true,
              "example": "1AbCdEfGhIjKlMnOpQrStUvWxYz"
            },
            {
              "key": "qualified_variable",
              "label": "Qualified variable name",
              "description": "The post-call variable checked for true before saving (the assistant must extract it).",
              "required": false,
              "default": "status",
              "example": "qualified"
            }
          ]
        }
      ]
    }

    Errores habituales