Skip to content

EIS data

List EIS data points

curl https://app.rejoule.io/eis/data/ \
    -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
test string test
parameter string parameter
frequency string frequency
timestamp string timestamp

Create an EIS data point

Member Role required

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

curl https://app.rejoule.io/eis/data/ \
    -X POST \
    -H "Authorization: User <token>" \
    -F "test=19" \
    -F "organization=5" \
    -F "parameter=end_freq"

Get a single EIS data point

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

The response object contains the following fields:

Name Type Description
id integer
test integer
organization integer
timestamp string
frequency number
parameter string
value number
detail string

Update an EIS data point

Member Role required

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

curl https://app.rejoule.io/eis/data/{id}/ \
    -X PUT \
    -H "Authorization: User <token>" \
    -F "test=15" \
    -F "organization=13" \
    -F "parameter=ocv"

Delete an EIS data point

Owner Role required

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

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