---
title: "Upsert Ingest Endpoint"
method: PUT
path: "/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}"
tags: ["Ingest Endpoint"]
---

# Upsert Ingest Endpoint

`PUT /ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}`

Create or update an ingest endpoint.

## Path parameters

- `source_id` string, required — The Source's ID or UID.
- `endpoint_id` string, required — The Endpoint's ID or UID.

## Request body

- IngestEndpointUpsertIn
  - `description` string
  - `disabled` boolean
  - `metadata` object
  - `throttleRate` integer, nullable — Maximum messages per second to send to this endpoint. Outgoing messages will be throttled to this rate.
  - `uid` string, nullable — Optional unique identifier for the endpoint.
  - `url` string, uri, required

## Response `200`

- IngestEndpointOut
  - `createdAt` string, date-time, required
  - `description` string, required
  - `disabled` boolean
  - `id` string, required — The Endpoint's ID.
  - `metadata` object, required
  - `throttleRate` integer, nullable — Maximum messages per second to send to this endpoint. Outgoing messages will be throttled to this rate.
  - `uid` string, nullable — Optional unique identifier for the endpoint.
  - `updatedAt` string, date-time, required
  - `url` string, uri, required

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `422` — Validation Error
- `429` — Too Many Requests

## Changes

- **2026-08-19** `dc130bd1b074` — 2 warning, 1 info
  - removed the request property `rateLimit`
  - removed the optional property `rateLimit` from the response with the `200` status
  - api operation id `v1.ingest.endpoint.update` removed and replaced with `v1.ingest.endpoint.upsert`

[Change history](https://skmtc.dev/svix/apis/svix-api/changes/ingest/api/v1/source/:source_id/endpoint/:endpoint_id/put.md)

---

[API](https://skmtc.dev/svix/apis/svix-api.md) · [All operations](https://skmtc.dev/svix/apis/svix-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/svix/svix-api/revisions/267f7078e536/schema)
