Update an event table
PATCH/projects/:project_id/event-tables/:event_table_id
Partially updates the configuration of an existing event table identified by its ID.
Only the fields included in the request body are changed; any field left out keeps
its current value. The table_name and schema of the event table cannot be changed.
To clear an optional field send an empty value ("" for text fields, [] for
ignored_fields, {} for foreign_keys).
Updating a table does not trigger indexing. Call
POST /projects/{project_id}/event-tables/{event_table_id}/index afterwards to re-index it.
Request
Responses
- 200
- 400
- 401
- 404
- 405
- 429
OK
The request is invalid.
The API key header is either missing or an invalid API key is given
Not Found
The requested HTTP method is not allowed.
Too many requests sent with the same API key. Up to 10 requests can be sent within 1 second.