> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voxo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Answered call

> This webhook fires when a new call is answered in your account.



## OpenAPI

````yaml /openapi/webhooks.json webhook ANSWEREDCALL
openapi: 3.1.0
info:
  title: Webhooks
  version: 1.0.0
  description: >-
    # VOXO Webhooks


    This collection documents the webhook events available in the VOXO platform.
    Webhooks allow your application to receive real-time HTTP POST notifications
    when specific events occur in your VOXO account.


    All webhook payloads are sent as POST requests to your configured
    `WEBHOOK_URL`.


    ## Available Webhook Events


    | Event | Type Identifier | Description |

    | --- | --- | --- |

    | **Start Call** | `STARTCALL` | Fires when a new call begins |

    | **Answered Call** | `ANSWEREDCALL` | Fires when a call is answered |

    | **End Call** | `ENDCALL` | Fires when a call ends |

    | **Call Recording** | `CALLRECORDING` | Fires when a new recording is
    available |

    | **New Voicemail** | `NEWVOICEMAIL` | Fires when a voicemail is left for
    any mailbox |

    | **SMS Received** | `INBOUNDSMS` | Fires when an inbound SMS is received on
    any number |

    | **Fax Received** | `FAXRECEIVED` | Fires when a new fax is received |

    | **Extension Created** | `EXTENSIONCREATED` | Fires when a new extension is
    created |

    | **Extension Deleted** | `EXTENSIONDELETED` | Fires when an extension is
    deleted |


    ## Notes


    - All datetime values are provided in **ISO 8601** format.
        
    - Each request in this collection includes a detailed description of its
    payload parameters.
servers:
  - url: https://example.com
security: []
paths: {}

````