cURL
curl --request POST \ --url https://app.textql.com/v1/sandbox/status \ --header 'Authorization: Bearer <token>' \ --header 'Connect-Protocol-Version: <connect-protocol-version>' \ --header 'Content-Type: application/json' \ --data ' { "sandboxId": "<string>" } '
{ "status": "<string>", "memoryUsage": "<string>", "dataframes": [ { "name": "<string>", "numRows": 123, "numCols": 123, "memoryUsageBytes": 123 } ] }
Get the current status of a sandbox, including loaded dataframes and memory usage
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Define the version of the Connect protocol
1
Define the timeout, in ms
Success
Show child attributes