Skip to main content
POST
/
v1
/
sandbox
/
upload
UploadFile
curl --request POST \
  --url https://app.textql.com/v1/sandbox/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Connect-Protocol-Version: <connect-protocol-version>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sandboxId": "<string>",
  "filename": "<string>",
  "content": "aSDinaTvuI8gbWludGxpZnk="
}
'
{
  "filename": "<string>",
  "sizeBytes": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Connect-Protocol-Version
enum<number>
required

Define the version of the Connect protocol

Available options:
1
Connect-Timeout-Ms
number

Define the timeout, in ms

Body

application/json
sandboxId
string
required
filename
string
required
content
string<byte>
required

File content, base64-encoded

Response

Success

filename
string
sizeBytes
integer<int64>