Skip to main content

Update Source

Update a source's name, schema binding, or webhook settings. Changes apply to new documents only — existing documents retain their original extraction.

PATCH/v1/sources/:id

Parameters

ParameterTypeDescription
idstring (path)The source ID
namestring (body)Updated source name
schema_idstring (body)New schema binding
webhook_urlstring (body)Updated webhook URL

Example

curl -X PATCH https://api.talonic.com/v1/sources/src_def456 \
  -H "Authorization: Bearer tlnc_sk_live_7f3a...x9k2" \
  -H "Content-Type: application/json" \
  -d '{"schema_id":"sch_xyz999"}'