Update Bulk Sync Schemas

Patches one or more schemas on a bulk sync at once. Only schemas explicitly included in the request body are modified; schemas omitted from the request are left unchanged. This makes PATCH the right choice when you want to update a subset of tables without affecting the rest of the sync's schema configuration. Within each provided schema, omitting `fields` enables all available fields on that schema. To control which fields are enabled, include the `fields` array with explicit `enabled` values for each field. > ๐Ÿ“˜ To replace a single schema's configuration in full (clearing any fields you > omit), use > [`PUT /api/bulk/syncs/{id}/schemas/{schema_id}`](../../../../../api-reference/bulk-sync/schemas/update) > instead.

Authentication

AuthorizationBasic

This is the Polytomic deployment key (on-premises only)

OR
AuthorizationBearer
This is the Polytomic API key

Path parameters

idstringRequiredformat: "uuid"
Unique identifier of the bulk sync.

Headers

X-Polytomic-VersionstringRequired

Request

This endpoint expects an object.
schemaslist of objects or nullOptional

Schemas to patch. Schemas are matched by id; only schemas present in this list are updated.

Response

OK
datalist of objects or null

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error