Authorization: Bearer ********************
{
"action": "submit",
"data": {
"assets": {
"stock": [
{
"type_of_stock": "Raw Materials",
"value_of_stock": "50000"
},
{
"type_of_stock": "Finished Goods",
"value_of_stock": "75000"
}
],
"machines": [
{
"type_of_machine": "Lathe Machine",
"value_of_machine": "120000"
},
{
"type_of_machine": "CNC Machine",
"value_of_machine": "250000"
}
],
"properties": [
{
"type_of_property": "Warehouse",
"value_of_property": "500000"
},
{
"type_of_property": "Factory",
"value_of_property": "1000000"
}
]
}
}
}
curl --location -g --request POST 'https://preprod.api.crego.io/v1/rego/runners/{{runner_id}}/execute/' \
--header 'Content-Type: application/json' \
--data-raw '{
"action": "submit",
"data": {
"assets": {
"stock": [
{
"type_of_stock": "Raw Materials",
"value_of_stock": "50000"
},
{
"type_of_stock": "Finished Goods",
"value_of_stock": "75000"
}
],
"machines": [
{
"type_of_machine": "Lathe Machine",
"value_of_machine": "120000"
},
{
"type_of_machine": "CNC Machine",
"value_of_machine": "250000"
}
],
"properties": [
{
"type_of_property": "Warehouse",
"value_of_property": "500000"
},
{
"type_of_property": "Factory",
"value_of_property": "1000000"
}
]
}
}
}'
{}