POST
/
table
/
create
Table Create
curl --request POST \
  --url https://trace.wandb.ai/table/create \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "table": {
    "project_id": "<string>",
    "rows": [
      {}
    ]
  }
}'
{
  "digest": "<string>",
  "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
table
object
required

Response

Successful Response

digest
string
required
row_digests
string[]

The digests of the rows that were created