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

# Create an endpoint

Creates a new webhook endpoint with a specified HTTPS URL.

Once created, Annature will deliver event payloads to this endpoint whenever supported events occur within your organisation.

## Parameters

<ParamField path="url" type="string">
  The HTTPS URL where webhook events will be sent.

  Only HTTPS URLs are supported. Insecure (non-SSL) endpoints will be rejected.
</ParamField>

<RequestExample>
  ```bash Endpoint theme={null}
  POST /v1/endpoints
  ```

  ```json Body theme={null}
  {
    "url": "https://example.com/webhooks"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "d53ec5c47bd8fa4463b0931251f7da3e",
    "url": "https://example.com/webhooks",
    "signature": "c7bbce6f29eadcdaa6570cc07d4bec83",
    "active": true,
    "created": "2019-12-17T05:30:00Z"
  }
  ```
</ResponseExample>
