Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. CheckList Template
  • 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
    • Create and Execute Runner
      POST
  • Customer Auth
    • Refresh Token
    • Send OTP
    • Verify OTP
    • Auth Ping
    • Exchange Token
  • Utility
    • Get Schema
  • Warehouse
  • Store
    • Get Store
    • List Store
    • Create Store
  • Document
    • Create Document
    • Get Storage Document
    • Add files to document
    • Download files
  • CheckList
    • CheckList Template
      • Create Checklist Template
        POST
      • Get CheckList Template
        GET
      • List CheckList Template
        GET
      • Update CheckList Template
        PUT
      • Delete CheckList Template
        DELETE
    • Workflow CheckList
      • Get checklist at runner stage
      • Update Check List Item
  • Approvals
    • Approval List
    • Pending Approval
    • Create Approvals
    • Get Approval
    • Update Approvals
    • Current user approval list
    • Get approval request by resource
    • Approve approval
    • Reject Approval
  1. CheckList Template

List CheckList Template

Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
GET
/v1/rego/checklist-templates/
Last modified:2025-07-07 10:18:15

Request

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

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/checklist-templates/'

Responses

🟢200OK
application/json
Body
count
integer 
required
current_page
integer 
required
page_size
integer 
required
results
array [object {9}] 
required
id
string 
required
company_id
string 
required
created_at
string 
required
created_by
string 
required
description
string 
required
flow
string 
required
items
array [object {6}] 
required
name
string 
required
stage
string 
required
Example
{
    "count": 0,
    "current_page": 0,
    "page_size": 0,
    "results": [
        {
            "id": "string",
            "company_id": "string",
            "created_at": "string",
            "created_by": "string",
            "description": "string",
            "flow": "string",
            "items": [
                {
                    "title": "string",
                    "description": "string",
                    "required": true,
                    "order_index": 0,
                    "auto_check_condition": {
                        "type": "string",
                        "condition": {
                            "endpoint": "string",
                            "method": "string",
                            "expected_status": 0,
                            "min_score": 0,
                            "source": "string"
                        }
                    },
                    "node_trigger": "string"
                }
            ],
            "name": "string",
            "stage": "string"
        }
    ]
}
Modified at 2025-07-07 10:18:15
Previous
Get CheckList Template
Next
Update CheckList Template
Built with