Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://cloudlab.scispot.io/labsheets/update-rows \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"labsheet": "Sample Manager",
"rows": [
{
"uuid": "<uuid>",
"data": [
"Sample 1",
1,
"DNA",
"Pending",
0.001,
"mg",
null,
null
],
"ignoreAlert": false
}
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
labsheet: 'Sample Manager',
rows: [
{
uuid: '<uuid>',
data: ['Sample 1', 1, 'DNA', 'Pending', 0.001, 'mg', null, null],
ignoreAlert: false
}
]
})
};
fetch('https://cloudlab.scispot.io/labsheets/update-rows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://cloudlab.scispot.io/labsheets/update-rows"
payload = {
"labsheet": "Sample Manager",
"rows": [
{
"uuid": "<uuid>",
"data": ["Sample 1", 1, "DNA", "Pending", 0.001, "mg", None, None],
"ignoreAlert": False
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)[
{
"uuid": "<uuid>",
"success": "true"
}
]{
"success": false,
"message": "Invalid Authentication Token"
}{
"success": false,
"message": "Missing Authentication Token"
}{
"success": false,
"message": "Not found"
}{
"success": false,
"message": "Validation error"
}{
"success": false,
"message": "Operation failed"
}curl --request POST \
--url https://cloudlab.scispot.io/labsheets/update-rows \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"labsheet": "Sample Manager",
"rows": [
{
"uuid": "<uuid>",
"data": [
"Sample 1",
1,
"DNA",
"Pending",
0.001,
"mg",
null,
null
],
"ignoreAlert": false
}
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
labsheet: 'Sample Manager',
rows: [
{
uuid: '<uuid>',
data: ['Sample 1', 1, 'DNA', 'Pending', 0.001, 'mg', null, null],
ignoreAlert: false
}
]
})
};
fetch('https://cloudlab.scispot.io/labsheets/update-rows', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://cloudlab.scispot.io/labsheets/update-rows"
payload = {
"labsheet": "Sample Manager",
"rows": [
{
"uuid": "<uuid>",
"data": ["Sample 1", 1, "DNA", "Pending", 0.001, "mg", None, None],
"ignoreAlert": False
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)[
{
"uuid": "<uuid>",
"success": "true"
}
]{
"success": false,
"message": "Invalid Authentication Token"
}{
"success": false,
"message": "Missing Authentication Token"
}{
"success": false,
"message": "Not found"
}{
"success": false,
"message": "Validation error"
}{
"success": false,
"message": "Operation failed"
}