REST APIs
cURL
curl --request PATCH \ --url https://api.basic.tech/account/{project_id}/db/{table}/{item_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "value": {} }'
{ "data": {} }
Updates an existing item in a database table
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
project id
table name
item id
Item updated successfully