Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Runner
  • Back to home
  • Omni
  • Installation
  • Document APIs
  • Contact APIs
  • Audit APIs
  • Core APIs
    • Get Enums
      GET
  • Review
  • Workflow
    • Runner
      • Create Runner
        POST
      • Retrieve Runner
        GET
      • Executer
        POST
    • Flow
      • Create Flow
  1. Runner

Executer

Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
POST
/runners/{id}/execute/
Last modified:2025-07-24 16:56:55

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required
Example:
01K0YM5YM4MFVE3ZTR1XG16Z8X
Body Params application/json
object {0}
Example
{
    "action": "submit",
    "data": {
        "product": {
            "name": "UltraClean Vacuum",
            "ref_id": "UCV-2025-01",
            "status": "active",
            "tags": ["home","cleaning","appliance"],
            "refs": "power:1200W,weight:5kg,color:red"
        }
    }
}

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 --request POST 'https://preprod.api.crego.io/runners/01K0YM5YM4MFVE3ZTR1XG16Z8X/execute/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "action": "submit",
    "data": {
        "product": {
            "name": "UltraClean Vacuum",
            "ref_id": "UCV-2025-01",
            "status": "active",
            "tags": ["home","cleaning","appliance"],
            "refs": "power:1200W,weight:5kg,color:red"
        }
    }
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-07-24 16:56:55
Previous
Retrieve Runner
Next
Create Flow
Built with