Update Data
테이블 (Table)
Update Data
Update data in the specified table based on the provided update condition and values.
POST
Update Data
Authorizations
Bearer token authentication. Include the token in the Authorization header as 'Bearer '
Body
application/json
The update condition and values
Values to update in SQL SET clause format (e.g. "column = value"). Multiple assignments can be separated by commas.
Example:
"video_title = changed_title, category = 100"
SQL WHERE clause to filter which rows to update. If not provided, all rows will be updated.
Example:
"video_id = 1000"