Brain
Create Brain
POST
/
brain
curl --request POST \
--url https://api.isosceles.ai/brain/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '""'
{
"active_features": null,
"brain_id": "a1ee4f4f-2af0-445b-aea9-62cb9ae1b3ef",
"created_on": 1726882264.061685,
"description": "",
"document_count": 0,
"language_code": "en",
"metadata_schema": {},
"org_uuid": "07ccd2f0-2e2c-47e6-91b6-d872baf86448",
"storage_bytes": 0,
"supp_id": "",
"title": "Test - brain",
"type": "unstructured",
"updated_on": 1726882264.092387
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Body
application/json
Response
200 - application/json
The response is of type object
.
curl --request POST \
--url https://api.isosceles.ai/brain/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '""'
{
"active_features": null,
"brain_id": "a1ee4f4f-2af0-445b-aea9-62cb9ae1b3ef",
"created_on": 1726882264.061685,
"description": "",
"document_count": 0,
"language_code": "en",
"metadata_schema": {},
"org_uuid": "07ccd2f0-2e2c-47e6-91b6-d872baf86448",
"storage_bytes": 0,
"supp_id": "",
"title": "Test - brain",
"type": "unstructured",
"updated_on": 1726882264.092387
}
Assistant
Responses are generated using AI and may contain mistakes.