Auth Token
Database
Product
Material
Switch
Supplier
Org
Scope
Taxonomy
Unit
Model
List Inputs
Get a list of model inputs
GET
/
v1
/
model
/
:uuid
/
input
curl --request GET \
--url https://app.variable.global/api/v1/model/:uuid/input \
--header 'Authorization: Bearer <token>'
{
"count": 1500,
"page": 1,
"pageSize": 100,
"data": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Name",
"syncId": "sync123",
"quantity": 150,
"unit": "kg",
"order": 1,
"material": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Material name"
},
"block": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Block name"
},
"lifecycleStage": {
"code": "A1",
"name": "Materials"
},
"created": "2021-01-01T00:00:00.000Z",
"updated": "2021-01-31T23:59:59.000Z",
"CO2e": "1234.5678"
}
]
}
Requires permission:
Read more about the Model & Input data models.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
A list of model inputs
Example:
1500
Example:
1
Example:
100
Example:
"Name"
ISO 8601 date
Example:
"2021-01-01T00:00:00.000Z"
ISO 8601 date
Example:
"2021-01-31T23:59:59.000Z"
An identifier to use when syncing data with other systems
Example:
"sync123"
Example:
150
The unit code (e.g. kg, lbs, etc.). All unit codes can be found in the List Units endpoint.
Example:
"kg"
Example:
1
Example:
"1234.5678"
curl --request GET \
--url https://app.variable.global/api/v1/model/:uuid/input \
--header 'Authorization: Bearer <token>'
{
"count": 1500,
"page": 1,
"pageSize": 100,
"data": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Name",
"syncId": "sync123",
"quantity": 150,
"unit": "kg",
"order": 1,
"material": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Material name"
},
"block": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Block name"
},
"lifecycleStage": {
"code": "A1",
"name": "Materials"
},
"created": "2021-01-01T00:00:00.000Z",
"updated": "2021-01-31T23:59:59.000Z",
"CO2e": "1234.5678"
}
]
}