Delete source ↗
noSummary: Deletes a source with the provided ID.
Original Documentation
Documentation Index#
Fetch the complete documentation index at: https://docs.trychroma.com/llms.txt Use this file to discover all available pages before exploring further.
Deletes a source with the provided ID.
OpenAPI#
openapi: 3.1.0
info:
title: Chroma Sync Service
description: >-
Chroma Sync Service provides APIs for managing data synchronization sources
and invocations. The service supports syncing content from GitHub
repositories, web scrape targets, and S3 buckets to Chroma collections.
license:
name: ''
version: 0.1.0
servers:
- url: https://sync.trychroma.com
security: []
paths:
/api/v1/sources/{source_id}:
delete:
tags:
- Source
summary: Delete source
description: Deletes a source with the provided ID.
operationId: delete_source
parameters:
- name: source_id
in: path
description: Source ID
required: true
schema:
$ref: '#/components/schemas/SourceId'
responses:
'204':
description: Source deletion successful
'400':
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: Source not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- x-chroma-token: []
components:
schemas:
SourceId:
type: string
format: uuid
ErrorResponse:
type: object
required:
- error
- message
properties:
error:
type: string
message:
type: string
securitySchemes:
x-chroma-token:
type: apiKey
in: header
name: x-chroma-tokenLink last verified
June 7, 2026.
View original ↗
Source: Chroma Docs
Link last verified: 2026-03-04