---
title: "Send Notification"
method: POST
path: "/notifications"
---

# Send Notification

`POST /notifications`

VSCode and JB plugins poll this endpoint once on startup.
Input:
    headers: {Authorization: `Bearer ${JWE_accessToken}`}, // Token used to access models
    body: JSON.stringify({
        os: Telemetry.os,
        extensionVersion: Telemetry.ideInfo?.extensionVersion,
        ideName: Telemetry.ideInfo?.name,
        ideType: Telemetry.ideInfo?.ideType,
        userId: Telemetry.uniqueId, // can match to telemetry events
    }),
Output:
    status: 200
    body: {messages: [
            {"level": "info" | "error" | "warning", "text": "Text!", "button": {"text": "Click", "url": "https://example.com"}},
    ]}

## Response `200`

Successful Response

- unknown

---

[API](https://skmtc.dev/kodacode/apis/xcode-proxy-gateway.md) · [All operations](https://skmtc.dev/kodacode/apis/xcode-proxy-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kodacode/xcode-proxy-gateway/revisions/7863886629fd/schema)
