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/:idParameters
| Parameter | Type | Description |
|---|---|---|
| id | string (path) | The source ID |
| name | string (body) | Updated source name |
| schema_id | string (body) | New schema binding |
| webhook_url | string (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"}'