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>"
]
}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.
Was this page helpful?