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
  • Tasks
    • Schedules
      • List all scheduled tasks
      • Get scheduled task details
      • Update scheduled task
      • Update scheduled task (full update)
    • Get task details
      GET
    • Update task
      PATCH
    • Update task (full update)
      PUT
  • Core APIs
    • Get Enums
      GET
  • Review
  • Authz
    • Exchange Token
      POST
    • Send OTP
      POST
    • Verify OTP
      POST
    • well know
      GET
    • Login User
      POST
  • Workflow
    • Runner
      • Create Runner
        POST
      • Retrieve Runner
        GET
      • Executer
        POST
    • Flow
      • Create Flow
      • List 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-29 06:21:52

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

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 Code 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 'Authorization: Bearer <token>' \
--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

Example
{}
Modified at 2025-07-29 06:21:52
Previous
Retrieve Runner
Next
Create Flow
Built with