Get datastore
/datastore/{id}
Path Parameters
The ID of the datastore to retrieve.
Response Body
Config object for the datastore connection (minus sensitive fields). The shape depends on type.
{"base_url":"https://data.mongodb-api.com/app/...","database":"my_db"}Mongo Data Api · 4 properties
Atlas Data API key. Treat as a secret.
Base URL of your Atlas Data API endpoint.
Name of the Atlas cluster (the Data API "data source").
Google Cloud Storage · 2 properties
Service-account JSON used to authenticate against Google Cloud Storage.
11 properties
S3 · 5 properties
Optional override for non-AWS S3 endpoints (e.g. R2, MinIO).
Secret access key. Treat as a secret.
Qdrant · 4 properties
Qdrant API key. Treat as a secret.
Timestamp when the datastore record was created.
The environment to which this datastore belongs.
The unique ID of the datastore.
A friendly label for identifying this datastore.
The datastore's backend type. Determines the shape of config.
mongo_data_apigoogle_cloud_storages3qdrant
Timestamp when the datastore record was last updated.
curl -X GET 'https://api.truto.one/datastore/{id}' \
-H 'Authorization: Bearer <your_api_token>' \
-H 'Content-Type: application/json'const response = await fetch('https://api.truto.one/datastore/{id}', {
method: 'GET',
headers: {
'Authorization': 'Bearer <your_api_token>',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import requests
url = "https://api.truto.one/datastore/{id}"
headers = {
"Authorization": "Bearer <your_api_token>",
"Content-Type": "application/json",
}
params = {
}
response = requests.get(url, headers=headers, params=params)
print(response.json())import Truto from '@truto/truto-ts-sdk';
const truto = new Truto({
token: '<your_api_token>',
});
const result = await truto.datastore.get('<id>');
console.log(result);import asyncio
from truto_python_sdk import TrutoApi
truto_api = TrutoApi(token="<your_api_token>")
async def main():
result = await truto_api.datastores.get("<id>")
print(result)
asyncio.run(main())