curl --request POST \
--url https://api.example.com/table/create \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"table": {
"project_id": "<string>",
"rows": [
{}
]
}
}
'{
"digest": "<string>",
"row_digests": [
"<string>"
]
}curl --request POST \
--url https://api.example.com/table/create \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"table": {
"project_id": "<string>",
"rows": [
{}
]
}
}
'{
"digest": "<string>",
"row_digests": [
"<string>"
]
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Show child attributes
Was this page helpful?