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

# Send Notifications API

> Receive asynchronous notifications from Suki using your notification endpoint

The Notifications API enable partners to receive asynchronous webhook notifications when ambient session processing completes or fails. You expose an HTTPS URL that accepts inbound requests. Suki calls that URL with a signed payload so your backend can pull results or update job state without relying only on polling.

Critically, your notification endpoint is called by Suki. Register and configure the webhook in your partner setup, then verify signatures before you trust the payload.

## Available endpoints

<Columns cols={2}>
  <Card title="Ambient Session Asynchronous Notifications" href="/api-reference/asynchronous/webhook" arrow={true} icon="code">
    Review the webhook contract for ambient session notifications
  </Card>
</Columns>

## Related guides

<Columns cols={3}>
  <Card title="Webhook Overview" href="/documentation/webhook/overview" icon="book" cta="Learn more">
    Learn how Partner webhooks deliver asynchronous session updates
  </Card>

  <Card title="Signature Verification" href="/documentation/webhook/signature-verification" icon="book" cta="Learn more">
    Verify webhook signatures before you process the payload
  </Card>

  <Card title="Webhook Configuration" href="/documentation/webhook/configuration" icon="book" cta="Learn more">
    Configure your notification URL and partner webhook settings
  </Card>
</Columns>

## Common use cases

<Columns cols={2}>
  <Card title="Advance chart workflows when generation completes">
    Receive webhook notifications when ambient processing finishes so your backend can retrieve content and update job state without polling.
  </Card>

  <Card title="Handle failed or timed-out sessions">
    React to failure and timeout notifications so clinicians and operations see accurate visit status.
  </Card>

  <Card title="Secure inbound webhook traffic">
    Verify webhook signatures before trusting payloads that change session or job state in your system.
  </Card>

  <Card title="Fetch content from notification links">
    Use payload links to retrieve status or clinical content for the ambient session that just completed.
  </Card>
</Columns>
