Skip to content

BMS Results

List BMS Results

curl https://app.rejoule.io/bms/results/ \
    -H "Authorization: User <token>"

The following query parameters are available:

Name Type Description
limit integer Number of results to return per page.
offset integer The initial index from which to return the results.
id string id
organization string organization
bms_test string bms_test
bms_file string bms_file
dbc_file string dbc_file
project string project
created string created

Create a BMS Result

Member Role required

Editing requires an Member role in the organization the resource belongs to. Find out more.

curl https://app.rejoule.io/bms/results/ \
    -X POST \
    -H "Authorization: User <token>" \
    -F "organization=6" \
    -F "bms_test=1"

Get a single BMS Result

curl https://app.rejoule.io/bms/results/{id}/ \
    -H "Authorization: User <token>"

The response object contains the following fields:

Name Type Description
id integer
organization integer
batch_id integer The batch ID for grouping together results from one file translation event.
bms_test integer The test from which these results were produced.
bms_file integer The file containing the raw data used to get these results.
dbc_file integer The DBC file used to transform the raw data.
results object The results from this test as key value pairs. More results may exist in the same batch.
projects array
notes string
timestamp string

Update a BMS Result

Member Role required

Editing requires an Member role in the organization the resource belongs to. Find out more.

curl https://app.rejoule.io/bms/results/{id}/ \
    -X PUT \
    -H "Authorization: User <token>" \
    -F "organization=6" \
    -F "bms_test=14"

Delete a BMS Result

Owner Role required

Deleting requires an Owner role in the organization the resource belongs to. Find out more.

curl https://app.rejoule.io/bms/results/{id}/ \
    -X DELETE \
    -H "Authorization: User <token>"