- Design
- Runner
- Customer Auth
- Utility
- Warehouse
- Store
- Document
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
Example:
123e4567-e89b-12d3-a456-426614174000
ref_id
string
Reference Identifier
>= 5 characters<= 50 characters
Examples:
ref12345xyz789
Match pattern:
^[a-zA-Z0-9_-]+$
flow_id
string <uuid>
Flow Identifier
Example:
123e4567-e89b-12d3-a456-426614174000
design_id
string <uuid>
Design Identifier
Example:
123e4567-e89b-12d3-a456-426614174000
visited_nodes
object
Associated Users
Additional properties
array[object (VisitedNode) {5}]
optional
store
object
Store
Additional properties
integer | number | string | boolean
optional
created_at
string <date-time>
Creation Timestamp
Example:
2023-01-01T00:00:00Z
created_by
string
Created By
Match pattern:
^[a-zA-Z0-9._-]{3,50}$
updated_by
string | null
Updated By
Match pattern:
^[a-zA-Z0-9._-]{3,50}$
updated_at
string <date-time> | null
Last Updated Timestamp
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"
}