Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://cloudlab.scispot.io/location/list-sublocations-by-id \ --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://cloudlab.scispot.io/location/list-sublocations-by-id', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "https://cloudlab.scispot.io/location/list-sublocations-by-id" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "success": true, "sublocations": [ {} ], "racks": [ {} ], "manifests": [ {} ], "samples": [ {} ] }
{ "success": false, "message": "Bad request" }
{ "success": false, "message": "Invalid Authentication Token" }
{ "success": false, "message": "Missing Authentication Token" }
{ "success": false, "message": "Validation error" }
{ "success": false, "message": "Operation failed" }
Given a parent location UUID, lists everything directly inside—child locations, storage racks, manifests (plates), and sample inventory rows.
Personal access token from Scispot Account → Personal Tokens
parent location to drill down into.
OK