Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Runner
  • Back to home
  • Flow
  • Design
    • Create Design
      POST
    • List Designs
      GET
    • Update Design
      PUT
    • Get Design
      GET
    • Mark as Current Design
      PUT
    • Duplicate Design
      POST
    • Get Expanded Design
      GET
    • Graph Validation
      GET
  • Runner
    • Create Runner
      POST
    • Execute Runner
      POST
    • Get Runner
      GET
    • List Runners
      GET
    • Runner Callback Handler
      POST
    • Runner activity
      GET
    • Runner Store
      GET
    • Update Runner design
      PUT
    • Update Store
      PUT
    • No Auth Runner Flow info
      GET
    • Parse Template
      POST
    • Get Current Nodes
      GET
  • Customer Auth
    • Refresh Token
      POST
    • Send OTP
      POST
    • Verify OTP
      POST
    • Auth Ping
      GET
    • Exchange Token
      POST
  • Utility
    • Get Schema
      GET
  • Warehouse
  • Store
    • Get Store
    • List Store
    • Create Store
  • Document
    • Create Document
    • Get Storage Document
    • Add files to document
    • Download files
  1. Runner

Get Runner

Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
GET
/v1/rego/runners/{id}/
Last modified:2024-12-11 07:15:00

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:
a0b2a8cb-bbc2-46cc-b00a-2313b9115a87
Query Params
store_fields
string 
optional

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 GET 'https://preprod.api.crego.io/v1/rego/runners/a0b2a8cb-bbc2-46cc-b00a-2313b9115a87/'

Responses

🟢200Success
application/json
Body
Schema defining the structure of Runner
id
string <uuid>
Unique Identifier
read-onlyrequired
A globally unique identifier for the resource.
Example:
123e4567-e89b-12d3-a456-426614174000
ref_id
string 
Reference Identifier
required
An alphanumeric reference identifier for the resource.
>= 5 characters<= 50 characters
Examples:
ref12345xyz789
Match pattern:
^[a-zA-Z0-9_-]+$
flow_id
string <uuid>
Flow Identifier
required
Globally unique identifier for the flow associated with the resource.
Example:
123e4567-e89b-12d3-a456-426614174000
design_id
string <uuid>
Design Identifier
required
Globally unique identifier for the design associated with the resource.
Example:
123e4567-e89b-12d3-a456-426614174000
visited_nodes
object 
Associated Users
optional
List of users associated with the resource.
Additional properties
array[object (VisitedNode) {5}] 
optional
store
object 
Store
optional
Custom data stored in association with the resource.
Additional properties
integer  | number  | string  | boolean 
optional
created_at
string <date-time>
Creation Timestamp
read-onlyrequired
The ISO 8601 timestamp when the resource was created.
Example:
2023-01-01T00:00:00Z
created_by
string 
Created By
required
The identifier of the user who created the edge. Must be 5-20 characters, allowing alphanumeric, dots, underscores, and dashes.
Match pattern:
^[a-zA-Z0-9._-]{3,50}$
updated_by
string  | null 
Updated By
optional
The identifier of the user who updated the edge. Must be 5-20 characters, allowing alphanumeric, dots, underscores, and dashes.
Match pattern:
^[a-zA-Z0-9._-]{3,50}$
updated_at
string <date-time> | null 
Last Updated Timestamp
read-onlyoptional
The ISO 8601 timestamp when the resource was last updated.
Example:
2023-01-01T01:00:00Z
Example
{
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "ref_id": "ref12345",
    "flow_id": "123e4567-e89b-12d3-a456-426614174000",
    "design_id": "123e4567-e89b-12d3-a456-426614174000",
    "visited_nodes": {
        "property1": [
            {
                "name": "string",
                "action": "string",
                "user_id": "string",
                "timestamp": "string",
                "data": {}
            }
        ],
        "property2": [
            {
                "name": "string",
                "action": "string",
                "user_id": "string",
                "timestamp": "string",
                "data": {}
            }
        ]
    },
    "store": {},
    "created_at": "2023-01-01T00:00:00Z",
    "created_by": "string",
    "updated_by": "string",
    "updated_at": "2023-01-01T01:00:00Z"
}
Previous
Execute Runner
Next
List Runners
Built with