Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Approvals
  • 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
      • Get CheckList Template
      • List CheckList Template
      • Update CheckList Template
      • Delete CheckList Template
    • Workflow CheckList
      • Get checklist at runner stage
      • Update Check List Item
  • Approvals
    • Approval List
      GET
    • Pending Approval
      GET
    • Create Approvals
      POST
    • Get Approval
      GET
    • Update Approvals
      PUT
    • Current user approval list
      GET
    • Get approval request by resource
      GET
    • Approve approval
      POST
    • Reject Approval
      POST
  1. Approvals

Approval List

Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
GET
/v1/rego/approvals/
Last modified:2025-07-08 10:30:25

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/approvals/'

Responses

🟢200OK
application/json
Body
count
integer 
required
current_page
integer 
required
page_size
integer 
required
results
array [object {15}] 
required
id
string 
optional
company_id
string 
optional
created_at
string 
optional
description
string 
optional
metadata
object 
optional
priority
string 
optional
requested_at
string 
optional
requested_by
string 
optional
required_approvals
string 
optional
resource_id
string 
optional
resource_type
string 
optional
runner
string 
optional
status
string 
optional
title
string 
optional
type
string 
optional
Example
{
    "count": 0,
    "current_page": 0,
    "page_size": 0,
    "results": [
        {
            "id": "string",
            "company_id": "string",
            "created_at": "string",
            "description": "string",
            "metadata": {
                "checklist_id": "string",
                "item_index": 0,
                "item_title": "string",
                "stage": "string",
                "requester_notes": "string"
            },
            "priority": "string",
            "requested_at": "string",
            "requested_by": "string",
            "required_approvals": "string",
            "resource_id": "string",
            "resource_type": "string",
            "runner": "string",
            "status": "string",
            "title": "string",
            "type": "string"
        }
    ]
}
Modified at 2025-07-08 10:30:25
Previous
Update Check List Item
Next
Pending Approval
Built with