For the complete documentation index, see llms.txt. This page is also available as Markdown.

Uploading chemistry model files for ScaleChem API

One or more chemistry model files (dbs files) need to are needed to process a scalechem API request. These files need to be zipped together and the zip file uploaded to the OLI cloud.

Upload package

POST https://api.olisystems.com/channel/upload/scalechem

Upload zipped dbs files as a package

Headers

Name
Type
Description

Authorization

String

Bearer {access_token}

{
    'file': [
    {
        'filename': 'mixerAll.zip', 
        'id': '4b9cffb4-23ae-4541-8c98-3cb11f43a480'
    }
    ], 
    'status': 'UPLOADED', 
    'type': 'scalechem'
}

Response description

field

type

description

file

array of object

information of files uploaded:

file[ ].filename

string

name of file with extension

file[ ].id

string

unique identifier for the uploaded file

status

string

"UPLOADED" or "FAILED"

type

string

type of file

Last updated

Was this helpful?