POST
/
table
/
update
Table Update
curl --request POST \
  --url https://trace.wandb.ai/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>"
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
project_id
string
required
base_digest
string
required
updates
Updates · array
required

Response

Successful Response

digest
string
required
updated_row_digests
string[]

The digests of the rows that were updated