English
cURL
curl --request POST \ --url https://api.example.com/table/update \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "project_id": "<string>", "base_digest": "<string>", "updates": [ { "append": { "row": {} } } ] } '
{ "digest": "<string>", "updated_row_digests": [ "<string>" ] }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Show child attributes
Successful Response
The digests of the rows that were updated
Was this page helpful?