Skip to main content
POST
Update Data

Authorizations

Authorization
string
header
required

Bearer token authentication. Include the token in the Authorization header as 'Bearer '

Body

application/json

The update condition and values

update_values
string
required

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"

update_condition
string | null
default:""

SQL WHERE clause to filter which rows to update. If not provided, all rows will be updated.

Example:

"video_id = 1000"

Response

Data successfully updated.

code
integer<int32>
required

HTTP status code.

Required range: x >= 0
success
boolean
required

Whether the request was successful.

data
object
exception
object