- Send OtpPOST
- Submit OtpPOST
- Create RunnerPOST
- PAN or GSTPOST
- Business InfoPOST
- ShareholdersPOST
- Business Extraa InfoPOST
- Business Assest DetailPOST
- Applicant ListGET
- Submit ApplicationPOST
- Set Current ApplicantPOST
- Document uploadPOST
- Get DocumentGET
- Applicant Pan , Aadhaar and MobilePOST
- Applicant Extraa InfoPOST
- Applicant Bank DetailsPOST
- Signing FormPOST
Business Assest Detail
Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
POST
/v1/rego/runners/{runner_id}/execute/
Last modified:2025-03-06 06:19:21
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
runner_id
string
required
Example:
{{runner_id}}
Body Params application/json
action
string
required
data
object
required
assets
object
required
Example
{
"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"
}
]
}
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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"
}
]
}
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}