curl --request POST \
--url https://api.ara.so/session/files/write \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"writes": [
{}
],
"restart": true
}
'{
"success": true,
"changes": [],
"gateway_token": "<string>",
"restarted": true
}Write files to the sandbox.
curl --request POST \
--url https://api.ara.so/session/files/write \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"writes": [
{}
],
"restart": true
}
'{
"success": true,
"changes": [],
"gateway_token": "<string>",
"restarted": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?