> ## Documentation Index
> Fetch the complete documentation index at: https://lago-ftr-wallet-improvements.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# The webhook endpoint object

> This object represents the webhook endpoint used for listening to Lago's events

<RequestExample>
  ```json The webhook endpoint object
  {
    "webhook_endpoint": {
      "lago_id": "1a901a90-1a90-1a90-1a90-1a901a901a90",
      "lago_organization_id": "1a901a90-1a90-1a90-1a90-1a901a901a90",
      "webhook_url": "https://foo.bar",
      "signature_algo": "hmac",
      "created_at": "2022-04-29T08:59:51Z"
    }
  }
  ```
</RequestExample>

## Attributes

<ResponseField name="webhook_endpoint" type="object">
  <Expandable title="object" defaultOpen="true">
    <ResponseField name="lago_id" type="string" required>
      Unique identifier assigned to the webhook endpoint within the Lago application.
      This ID is exclusively created by Lago and serves as a unique identifier for
      the webhook endpoint's record within the Lago system.
    </ResponseField>

    <ResponseField name="lago_organization_id" type="string" required>
      Unique identifier assigned to the organization within the Lago application.
      This ID is exclusively created by Lago and serves as a unique identifier for
      the organization's record within the Lago system.
    </ResponseField>

    <ResponseField name="webhook_url" type="string" required>
      The URL endpoint utilized for capturing Lago activity and events.
    </ResponseField>

    <ResponseField name="signature_algo" type="string" required>
      The signature type employed for the webhook endpoint. Options are either `jwt` or `hmac`. If unspecified, the default value is `jwt`.
    </ResponseField>

    <ResponseField name="created_at" type="string" required>
      The date and time when the webhook endpoint was created. It is expressed in UTC format according to the ISO 8601 datetime standard.
      This field provides the timestamp for the exact moment when the webhook endpoint was initially created.
    </ResponseField>
  </Expandable>
</ResponseField>
