Anunzi IA Documentation
Ir a Anunzi IAAyuda al Cliente
  • Anunzi AI Calls API Documentation
    • Getting Started
    • 🔑Authentication & Security
  • Postman Collections
  • Postman Documentation
  • Assistants
    • 👨‍💼Assistants
      • 🔵Create Assistant
      • 🟣Update Assistant
      • 🟢Get Assistant
      • 🟢List Assistants
      • 🔴Delete Assistant
  • Calls
    • 📳Calls
      • 🔵Make Calls
      • 🔵Make SIP Trunk Call
      • 🟢List Calls
      • 🟢Get Call
      • Webhooks
      • Custom Variables
      • Dynamic Prompt Injection
      • Time Zones
  • Actions
    • 🪄Actions
      • 🔵Create Action
      • 🔵Initialize Custom Action
      • 🟣Update Action
      • 🔴Delete Action
      • 🟢Get Action
      • 🟢List Actions
      • 🔵Attach Action
      • 🔵Detach Action
  • Knowledge Bases
    • 📑Knowledge Bases
      • 🔵Create Knowledge Base
      • 🟢Get Knowledge Base
      • 🟣Update Knowledge Base
      • 🔴Delete Knowledge Base
      • 🔵Attach Knowledge Base
      • 🔵Detach Knowledge Base
  • Plataforma IA Generativa
    • Introducción a Anunzi IA
      • Cambiar el tema y el idioma
  • 📖TEXTO
    • Centro de Herramientas
    • Cómo crear una herramienta
    • Creador de Artículos
    • Cómo usar el Re-escritor
  • 🙋ASISTENTES
    • Crear categorías de chat
    • Crear Plantilla de Chat
    • Entrenamiento de chatbots
    • Cómo usar Asistentes IA
      • Usar comandos de voz
  • 🎨IMAGENES
    • Cómo usar el Creador de Imágenes
  • 🎶AUDIO
    • Pasar archivos de voz a texto (desgrabar)
    • Creador de Voz
    • Clonador de voz
  • Otras Funcionalidades
    • Programa de Afiliados
    • Equipos de trabajo
      • Administrar permisos del equipo
    • Cómo crear una Marca
  • Problemas Comunes
    • No funciona el enlace de confirmación
  • Actualizaciones
    • Novedades de la versión 7.4.2
Con tecnología de GitBook
En esta página

¿Te fue útil?

  1. Actions
  2. Actions

List Actions

GET https://api.anunzi.net/v2/actions

Retrieve a paginated list of all available actions configured in your Anunzi environment.


Query Parameters

Parameter
Type
Required
Description

limit

int32

No

Number of actions displayed per page (default: 20).

offset

int32

No

Starting point for listing actions (default: 0).


Example Request (cURL)

curl --request GET \
     --url https://api.anunzi.net/v2/actions \
     --header 'accept: application/json' \
     --header 'Authorization: Bearer API_KEY'

Example Response (200 OK)

{
    "status": "ok",
    "response": {
        "pagination": {
            "total_records": 103,
            "limit": 20,
            "offset": 0
        },
        "actions": [
            {
                "action_id": "1722936793779x397329270058999800",
                "action_type": "SEND_SMS",
                "name": "send_sms",
                "description": "If user wants to have a meeting next week.",
                "parameters_hard_coded": {
                    "sms_message_text": "Hello, thanks for your interest in a demo meeting. You can book your session here: Booking Link"
                }
            },
            {
                "action_id": "1722936881007x6148720204197584900",
                "action_type": "INFORMATION_EXTRACTOR",
                "name": "",
                "description": "",
                "parameters_hard_coded": {
                    "type": "",
                    "identifier": "",
                    "condition": "",
                    "choices": [],
                    "examples": []
                }
            }
        ]
    }
}

Response Fields

Field
Type
Description

total_records

int32

Total number of actions available.

limit

int32

Number of actions displayed per page.

offset

int32

Starting point of the records returned.

action_id

string

Unique identifier for the action.

action_type

string

Type of action (e.g., SEND_SMS, LIVE_TRANSFER, REAL_TIME_BOOKING).

name

string

Name of the action.

description

string

Description of what the action is expected to do.

parameters_hard_coded

object

Key-value pairs containing predefined parameters for the action.


Status Codes

Code
Description

200

Actions retrieved successfully.

400

Bad Request. Invalid or missing parameters.

AnteriorGet ActionSiguienteAttach Action

Última actualización hace 2 meses

¿Te fue útil?

🪄
🟢