English
cURL
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.
Basic <encoded-value>
<encoded-value>
username:password
Show child attributes
Successful Response
The digests of the rows that were created
Was this page helpful?