{
    "info": {
        "name": "Data Builder API",
        "_postman_id": "6a07f8804fca4",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
        "description": "Data Builder REST API \u2014 Generated 2026-05-16"
    },
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{api_token}}",
                "type": "string"
            }
        ]
    },
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://databuilder.polyxgo.com/api/v1",
            "type": "string"
        },
        {
            "key": "api_token",
            "value": "",
            "type": "string"
        },
        {
            "key": "hmac_secret",
            "value": "",
            "type": "string",
            "description": "Optional \u2014 HMAC secret for signed requests. Leave empty if HMAC is not enabled."
        }
    ],
    "event": [
        {
            "listen": "prerequest",
            "script": {
                "type": "text/javascript",
                "exec": [
                    "const timestamp = Math.floor(Date.now() / 1000).toString();",
                    "const method = pm.request.method.toUpperCase();",
                    "const secret = pm.collectionVariables.get(\"hmac_secret\");",
                    "",
                    "if (secret) {",
                    "    const url = pm.request.url;",
                    "    const pathArr = url.path || [];",
                    "    const path = \"/\" + pathArr.join(\"/\");",
                    "    const query = url.getQueryString({ignoreDisabled: true}) || \"\";",
                    "    const bodyRaw = (pm.request.body && pm.request.body.raw) ? pm.request.body.raw : \"\";",
                    "    const bodyHash = CryptoJS.SHA256(bodyRaw).toString();",
                    "    const canonical = [method, path, query, bodyHash, timestamp].join(\"\\n\");",
                    "    const signature = CryptoJS.HmacSHA256(canonical, secret).toString();",
                    "    pm.request.headers.add({ key: \"X-Timestamp\", value: timestamp });",
                    "    pm.request.headers.add({ key: \"X-Signature\", value: signature });",
                    "}"
                ]
            }
        }
    ],
    "item": [
        {
            "name": "Resources",
            "item": [
                {
                    "name": "List activity_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/activity_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "activity_log"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get activity_log by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/activity_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "activity_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create activity_log",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/activity_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "activity_log"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Sample description\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"staffid\": \"sample_staffid\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update activity_log",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/activity_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "activity_log",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Updated content\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"staffid\": \"updated_staffid\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete activity_log",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/activity_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "activity_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema activity_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/activity_log/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "activity_log",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List announcements",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/announcements",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "announcements"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get announcements by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/announcements/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "announcements",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create announcements",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/announcements",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "announcements"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"message\": \"Sample text content\",\n    \"showtousers\": 0,\n    \"showtostaff\": 0,\n    \"showname\": 0,\n    \"dateadded\": \"2026-05-16 12:54:23\",\n    \"userid\": \"sample_userid\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update announcements",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/announcements/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "announcements",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"message\": \"Updated text content\",\n    \"showtousers\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete announcements",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/announcements/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "announcements",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema announcements",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/announcements/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "announcements",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List consent_purposes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consent_purposes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consent_purposes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get consent_purposes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consent_purposes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consent_purposes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create consent_purposes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consent_purposes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consent_purposes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"last_updated\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update consent_purposes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consent_purposes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consent_purposes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"last_updated\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete consent_purposes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consent_purposes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consent_purposes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema consent_purposes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consent_purposes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consent_purposes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List consents",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consents",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consents"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get consents by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consents/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consents",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create consents",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consents",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consents"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"action\": \"sample_action\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"ip\": \"sample_ip\",\n    \"contact_id\": 0,\n    \"lead_id\": 0,\n    \"description\": \"Sample description\",\n    \"opt_in_purpose_description\": \"Sample text content\",\n    \"purpose_id\": 0,\n    \"staff_name\": \"sample_staff_name\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update consents",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consents/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consents",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"action\": \"updated_action\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"ip\": \"updated_ip\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete consents",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consents/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consents",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema consents",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/consents/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "consents",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List contact_permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contact_permissions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contact_permissions"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get contact_permissions by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contact_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contact_permissions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create contact_permissions",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contact_permissions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contact_permissions"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"permission_id\": 0,\n    \"userid\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update contact_permissions",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contact_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contact_permissions",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"permission_id\": 1,\n    \"userid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete contact_permissions",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contact_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contact_permissions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema contact_permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contact_permissions/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contact_permissions",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List contacts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contacts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contacts"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get contacts by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contacts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contacts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create contacts",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contacts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contacts"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"userid\": 0,\n    \"is_primary\": 1,\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"email\": \"user@example.com\",\n    \"phonenumber\": \"+1234567890\",\n    \"title\": \"Sample title\",\n    \"password\": \"SecureP@ss123\",\n    \"email_verified_at\": \"user@example.com\",\n    \"email_verification_key\": \"user@example.com\",\n    \"email_verification_sent_at\": \"user@example.com\",\n    \"last_password_change\": \"2026-05-16 12:54:23\",\n    \"active\": 1,\n    \"direction\": \"sample_direction\",\n    \"invoice_emails\": \"user@example.com\",\n    \"estimate_emails\": \"user@example.com\",\n    \"credit_note_emails\": \"user@example.com\",\n    \"contract_emails\": \"user@example.com\",\n    \"task_emails\": \"user@example.com\",\n    \"project_emails\": \"user@example.com\",\n    \"ticket_emails\": \"user@example.com\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update contacts",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contacts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contacts",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"userid\": 1,\n    \"is_primary\": 1,\n    \"firstname\": \"John\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete contacts",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contacts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contacts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema contacts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contacts/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contacts",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List contract_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_comments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get contract_comments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create contract_comments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_comments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Sample description\",\n    \"contract_id\": 0,\n    \"staffid\": 0,\n    \"dateadded\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update contract_comments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_comments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Updated content\",\n    \"contract_id\": 1,\n    \"staffid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete contract_comments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema contract_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_comments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_comments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List contract_renewals",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_renewals",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_renewals"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get contract_renewals by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_renewals/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_renewals",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create contract_renewals",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_renewals",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_renewals"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"contractid\": 0,\n    \"old_start_date\": \"2026-05-16 12:54:23\",\n    \"new_start_date\": \"2026-05-16 12:54:23\",\n    \"old_end_date\": \"2026-05-16 12:54:23\",\n    \"new_end_date\": \"2026-05-16 12:54:23\",\n    \"old_value\": 0,\n    \"new_value\": 0,\n    \"date_renewed\": \"2026-05-16 12:54:23\",\n    \"renewed_by\": \"sample_renewed_by\",\n    \"renewed_by_staff_id\": 0,\n    \"is_on_old_expiry_notified\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update contract_renewals",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_renewals/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_renewals",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"contractid\": 1,\n    \"old_start_date\": \"2026-05-16 12:54:23\",\n    \"new_start_date\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete contract_renewals",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_renewals/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_renewals",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema contract_renewals",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contract_renewals/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contract_renewals",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List contracts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get contracts by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create contracts",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Sample description\",\n    \"description\": \"Sample description\",\n    \"subject\": \"Sample title\",\n    \"client\": 0,\n    \"datestart\": \"2026-05-16 12:54:23\",\n    \"dateend\": \"2026-05-16 12:54:23\",\n    \"contract_type\": 0,\n    \"project_id\": 0,\n    \"dateadded\": \"2026-05-16 12:54:23\",\n    \"isexpirynotified\": 0,\n    \"contract_value\": 0,\n    \"trash\": 0,\n    \"not_visible_to_client\": 0,\n    \"hash\": \"sample_hash\",\n    \"signed\": 0,\n    \"signature\": \"sample_signature\",\n    \"marked_as_signed\": 0,\n    \"acceptance_firstname\": \"sample_acceptance_firstname\",\n    \"acceptance_lastname\": \"sample_acceptance_lastname\",\n    \"acceptance_email\": \"user@example.com\",\n    \"acceptance_date\": \"2026-05-16 12:54:23\",\n    \"acceptance_ip\": \"sample_acceptance_ip\",\n    \"short_link\": \"sample_short_link\",\n    \"last_sent_at\": \"2026-05-16 12:54:23\",\n    \"contacts_sent_to\": \"Sample text content\",\n    \"last_sign_reminder_at\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update contracts",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Updated content\",\n    \"description\": \"Updated content\",\n    \"subject\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete contracts",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema contracts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List contracts_types",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts_types",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts_types"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get contracts_types by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts_types/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts_types",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create contracts_types",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts_types",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts_types"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update contracts_types",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts_types/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts_types",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete contracts_types",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts_types/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts_types",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema contracts_types",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/contracts_types/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "contracts_types",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List countries",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/countries",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "countries"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get countries by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/countries/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "countries",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create countries",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/countries",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "countries"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"iso2\": \"sample_iso2\",\n    \"short_name\": \"sample_short_name\",\n    \"long_name\": \"sample_long_name\",\n    \"iso3\": \"sample_iso3\",\n    \"numcode\": \"sample_numcode\",\n    \"un_member\": \"sample_un_member\",\n    \"calling_code\": \"sample_calling_code\",\n    \"cctld\": \"sample_cctld\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update countries",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/countries/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "countries",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"iso2\": \"updated_iso2\",\n    \"short_name\": \"updated_short_name\",\n    \"long_name\": \"updated_long_name\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete countries",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/countries/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "countries",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema countries",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/countries/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "countries",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List credit_notes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credit_notes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credit_notes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get credit_notes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credit_notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credit_notes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create credit_notes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credit_notes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credit_notes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"clientid\": 0,\n    \"deleted_customer_name\": \"sample_deleted_customer_name\",\n    \"number\": 0,\n    \"prefix\": \"sample_prefix\",\n    \"number_format\": 0,\n    \"formatted_number\": \"sample_formatted_number\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"adminnote\": 0,\n    \"terms\": \"Sample text content\",\n    \"clientnote\": \"Sample text content\",\n    \"currency\": 0,\n    \"subtotal\": 0,\n    \"total_tax\": 0,\n    \"total\": 0,\n    \"adjustment\": 0,\n    \"status\": 1,\n    \"project_id\": 0,\n    \"discount_percent\": 0,\n    \"discount_total\": 0,\n    \"discount_type\": \"sample_discount_type\",\n    \"billing_street\": \"sample_billing_street\",\n    \"billing_city\": \"sample_billing_city\",\n    \"billing_state\": \"sample_billing_state\",\n    \"billing_zip\": \"sample_billing_zip\",\n    \"billing_country\": 0,\n    \"shipping_street\": \"sample_shipping_street\",\n    \"shipping_city\": \"sample_shipping_city\",\n    \"shipping_state\": \"sample_shipping_state\",\n    \"shipping_zip\": \"sample_shipping_zip\",\n    \"shipping_country\": 0,\n    \"include_shipping\": 0,\n    \"show_shipping_on_credit_note\": 0,\n    \"show_quantity_as\": 0,\n    \"reference_no\": \"sample_reference_no\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update credit_notes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credit_notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credit_notes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"clientid\": 1,\n    \"deleted_customer_name\": \"updated_deleted_customer_name\",\n    \"number\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete credit_notes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credit_notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credit_notes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema credit_notes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credit_notes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credit_notes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List creditnote_refunds",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/creditnote_refunds",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "creditnote_refunds"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get creditnote_refunds by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/creditnote_refunds/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "creditnote_refunds",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create creditnote_refunds",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/creditnote_refunds",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "creditnote_refunds"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"credit_note_id\": 0,\n    \"staff_id\": 0,\n    \"refunded_on\": \"2026-05-16 12:54:23\",\n    \"payment_mode\": \"sample_payment_mode\",\n    \"note\": \"Sample text content\",\n    \"amount\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update creditnote_refunds",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/creditnote_refunds/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "creditnote_refunds",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"credit_note_id\": 1,\n    \"staff_id\": 1,\n    \"refunded_on\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete creditnote_refunds",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/creditnote_refunds/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "creditnote_refunds",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema creditnote_refunds",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/creditnote_refunds/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "creditnote_refunds",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List credits",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credits",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credits"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get credits by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credits/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credits",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create credits",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credits",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credits"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"invoice_id\": 0,\n    \"credit_id\": 0,\n    \"staff_id\": 0,\n    \"date\": \"2026-05-16 12:54:23\",\n    \"date_applied\": \"2026-05-16 12:54:23\",\n    \"amount\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update credits",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credits/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credits",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"invoice_id\": 1,\n    \"credit_id\": 1,\n    \"staff_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete credits",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credits/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credits",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema credits",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/credits/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "credits",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List currencies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/currencies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "currencies"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get currencies by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/currencies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "currencies",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create currencies",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/currencies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "currencies"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"symbol\": \"sample_symbol\",\n    \"name\": \"Sample title\",\n    \"decimal_separator\": \"sample_decimal_separator\",\n    \"thousand_separator\": \"sample_thousand_separator\",\n    \"placement\": \"sample_placement\",\n    \"isdefault\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update currencies",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/currencies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "currencies",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"symbol\": \"updated_symbol\",\n    \"name\": \"Updated title\",\n    \"decimal_separator\": \"updated_decimal_separator\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete currencies",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/currencies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "currencies",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema currencies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/currencies/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "currencies",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List customfieldsvalues",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfieldsvalues",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfieldsvalues"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get customfieldsvalues by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfieldsvalues/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfieldsvalues",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create customfieldsvalues",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfieldsvalues",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfieldsvalues"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"relid\": 0,\n    \"fieldid\": 0,\n    \"fieldto\": \"sample_fieldto\",\n    \"value\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update customfieldsvalues",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfieldsvalues/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfieldsvalues",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"relid\": 1,\n    \"fieldid\": 1,\n    \"fieldto\": \"updated_fieldto\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete customfieldsvalues",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfieldsvalues/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfieldsvalues",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema customfieldsvalues",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfieldsvalues/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfieldsvalues",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List customfields",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfields",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfields"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get customfields by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfields/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfields",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create customfields",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfields",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfields"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"fieldto\": \"sample_fieldto\",\n    \"name\": \"Sample title\",\n    \"slug\": \"sample_slug\",\n    \"required\": 0,\n    \"type\": \"sample_type\",\n    \"options\": \"Sample text content\",\n    \"display_inline\": 0,\n    \"field_order\": 0,\n    \"active\": 1,\n    \"show_on_pdf\": 0,\n    \"show_on_ticket_form\": 0,\n    \"only_admin\": 0,\n    \"show_on_table\": 0,\n    \"show_on_client_portal\": 0,\n    \"disalow_client_to_edit\": 0,\n    \"bs_column\": 0,\n    \"default_value\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update customfields",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfields/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfields",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"fieldto\": \"updated_fieldto\",\n    \"name\": \"Updated title\",\n    \"slug\": \"updated_slug\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete customfields",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfields/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfields",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema customfields",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customfields/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customfields",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List customer_admins",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_admins",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_admins"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get customer_admins by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_admins/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_admins",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create customer_admins",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_admins",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_admins"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staff_id\": 0,\n    \"customer_id\": 0,\n    \"date_assigned\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update customer_admins",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_admins/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_admins",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staff_id\": 1,\n    \"customer_id\": 1,\n    \"date_assigned\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete customer_admins",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_admins/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_admins",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema customer_admins",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_admins/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_admins",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List clients",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/clients",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "clients"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get clients by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/clients/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "clients",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create clients",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/clients",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "clients"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"company\": \"ACME Corp\",\n    \"vat\": \"1234567890\",\n    \"phonenumber\": \"+1234567890\",\n    \"country\": \"1\",\n    \"city\": \"New York\",\n    \"zip\": \"10001\",\n    \"state\": \"NY\",\n    \"address\": \"123 Main St\",\n    \"website\": \"https://example.com\",\n    \"active\": 1,\n    \"leadid\": 0,\n    \"billing_street\": \"sample_billing_street\",\n    \"billing_city\": \"sample_billing_city\",\n    \"billing_state\": \"sample_billing_state\",\n    \"billing_zip\": \"sample_billing_zip\",\n    \"billing_country\": 0,\n    \"shipping_street\": \"sample_shipping_street\",\n    \"shipping_city\": \"sample_shipping_city\",\n    \"shipping_state\": \"sample_shipping_state\",\n    \"shipping_zip\": \"sample_shipping_zip\",\n    \"shipping_country\": 0,\n    \"longitude\": \"sample_longitude\",\n    \"latitude\": \"sample_latitude\",\n    \"default_language\": \"sample_default_language\",\n    \"default_currency\": 0,\n    \"show_primary_contact\": 0,\n    \"stripe_id\": \"sample_stripe_id\",\n    \"registration_confirmed\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update clients",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/clients/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "clients",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"company\": \"ACME Corp\",\n    \"vat\": \"1234567890\",\n    \"phonenumber\": \"+1234567890\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete clients",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/clients/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "clients",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema clients",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/clients/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "clients",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List customers_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customers_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customers_groups"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get customers_groups by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customers_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customers_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create customers_groups",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customers_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customers_groups"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update customers_groups",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customers_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customers_groups",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete customers_groups",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customers_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customers_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema customers_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customers_groups/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customers_groups",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List data_builder_api_logs",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_logs",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_logs"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get data_builder_api_logs by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_logs/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_logs",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create data_builder_api_logs",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_logs",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_logs"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"token_id\": 0,\n    \"endpoint\": \"sample_endpoint\",\n    \"method\": \"sample_method\",\n    \"query_params\": \"Sample text content\",\n    \"status_code\": 0,\n    \"response_time_ms\": 0,\n    \"ip_address\": \"sample_ip_address\",\n    \"user_agent\": \"sample_user_agent\",\n    \"error_detail\": \"sample_error_detail\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update data_builder_api_logs",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_logs/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_logs",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"token_id\": 1,\n    \"endpoint\": \"updated_endpoint\",\n    \"method\": \"updated_method\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete data_builder_api_logs",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_logs/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_logs",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema data_builder_api_logs",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_logs/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_logs",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List data_builder_api_rate",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_rate",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_rate"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get data_builder_api_rate by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_rate/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_rate",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create data_builder_api_rate",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_rate",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_rate"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"identifier\": \"sample_identifier\",\n    \"endpoint_group\": \"sample_endpoint_group\",\n    \"window_start\": 0,\n    \"request_count\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update data_builder_api_rate",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_rate/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_rate",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"identifier\": \"updated_identifier\",\n    \"endpoint_group\": \"updated_endpoint_group\",\n    \"window_start\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete data_builder_api_rate",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_rate/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_rate",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema data_builder_api_rate",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/data_builder_api_rate/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "data_builder_api_rate",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List demobuilder_backups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_backups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_backups"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get demobuilder_backups by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_backups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_backups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create demobuilder_backups",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_backups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_backups"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"filename\": \"sample_filename\",\n    \"size\": 0,\n    \"database_size\": 0,\n    \"directories_info\": \"Sample text content\",\n    \"excluded_tables_info\": \"Sample text content\",\n    \"notes\": \"Sample text content\",\n    \"created_by\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update demobuilder_backups",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_backups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_backups",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"filename\": \"updated_filename\",\n    \"size\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete demobuilder_backups",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_backups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_backups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema demobuilder_backups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_backups/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_backups",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List demobuilder_data_configs",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_data_configs",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_data_configs"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get demobuilder_data_configs by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_data_configs/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_data_configs",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create demobuilder_data_configs",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_data_configs",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_data_configs"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"entity_type\": \"sample_entity_type\",\n    \"config_data\": \"Sample text content\",\n    \"is_active\": 1,\n    \"created_by\": 0,\n    \"updated_by\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update demobuilder_data_configs",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_data_configs/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_data_configs",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"entity_type\": \"updated_entity_type\",\n    \"config_data\": \"Updated text content\",\n    \"is_active\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete demobuilder_data_configs",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_data_configs/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_data_configs",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema demobuilder_data_configs",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_data_configs/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_data_configs",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List demobuilder_demo_accounts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_demo_accounts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_demo_accounts"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get demobuilder_demo_accounts by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_demo_accounts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_demo_accounts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create demobuilder_demo_accounts",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_demo_accounts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_demo_accounts"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 0,\n    \"user_type\": \"sample_user_type\",\n    \"role_name\": \"sample_role_name\",\n    \"role\": \"sample_role\",\n    \"username\": \"sample_username\",\n    \"password\": \"SecureP@ss123\",\n    \"message\": \"Sample text content\",\n    \"login\": \"sample_login\",\n    \"redirect_url\": \"https://example.com\",\n    \"login_url\": \"https://example.com\",\n    \"sort_order\": 0,\n    \"is_active\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update demobuilder_demo_accounts",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_demo_accounts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_demo_accounts",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_type\": \"updated_user_type\",\n    \"role_name\": \"updated_role_name\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete demobuilder_demo_accounts",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_demo_accounts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_demo_accounts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema demobuilder_demo_accounts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/demobuilder_demo_accounts/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "demobuilder_demo_accounts",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List departments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/departments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "departments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get departments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/departments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "departments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create departments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/departments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "departments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"imap_username\": \"sample_imap_username\",\n    \"email\": \"user@example.com\",\n    \"email_from_header\": \"user@example.com\",\n    \"host\": \"sample_host\",\n    \"password\": \"SecureP@ss123\",\n    \"encryption\": \"sample_encryption\",\n    \"folder\": \"sample_folder\",\n    \"delete_after_import\": 0,\n    \"calendar_id\": \"Sample text content\",\n    \"hidefromclient\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update departments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/departments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "departments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"imap_username\": \"updated_imap_username\",\n    \"email\": \"user@example.com\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete departments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/departments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "departments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema departments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/departments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "departments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List dismissed_announcements",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/dismissed_announcements",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "dismissed_announcements"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get dismissed_announcements by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/dismissed_announcements/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "dismissed_announcements",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create dismissed_announcements",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/dismissed_announcements",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "dismissed_announcements"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"announcementid\": 0,\n    \"staff\": 0,\n    \"userid\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update dismissed_announcements",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/dismissed_announcements/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "dismissed_announcements",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"announcementid\": 1,\n    \"staff\": 1,\n    \"userid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete dismissed_announcements",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/dismissed_announcements/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "dismissed_announcements",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema dismissed_announcements",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/dismissed_announcements/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "dismissed_announcements",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List emailtemplates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/emailtemplates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "emailtemplates"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get emailtemplates by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/emailtemplates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "emailtemplates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create emailtemplates",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/emailtemplates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "emailtemplates"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"Sample text content\",\n    \"slug\": \"sample_slug\",\n    \"language\": \"sample_language\",\n    \"name\": \"Sample title\",\n    \"subject\": \"Sample title\",\n    \"message\": \"Sample text content\",\n    \"fromname\": \"Sample text content\",\n    \"fromemail\": \"user@example.com\",\n    \"plaintext\": 0,\n    \"active\": 1,\n    \"order\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update emailtemplates",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/emailtemplates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "emailtemplates",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"Updated text content\",\n    \"slug\": \"updated_slug\",\n    \"language\": \"updated_language\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete emailtemplates",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/emailtemplates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "emailtemplates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema emailtemplates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/emailtemplates/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "emailtemplates",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List estimate_request_forms",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_forms",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_forms"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get estimate_request_forms by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_forms/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_forms",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create estimate_request_forms",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_forms",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_forms"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"form_key\": \"sample_form_key\",\n    \"type\": \"sample_type\",\n    \"name\": \"Sample title\",\n    \"form_data\": \"Sample text content\",\n    \"recaptcha\": 0,\n    \"status\": 1,\n    \"submit_btn_name\": \"sample_submit_btn_name\",\n    \"submit_btn_bg_color\": \"sample_submit_btn_bg_color\",\n    \"submit_btn_text_color\": \"sample_submit_btn_text_color\",\n    \"success_submit_msg\": \"Sample text content\",\n    \"submit_action\": 0,\n    \"submit_redirect_url\": \"https://example.com\",\n    \"language\": \"sample_language\",\n    \"dateadded\": \"2026-05-16 12:54:23\",\n    \"notify_type\": \"sample_notify_type\",\n    \"notify_ids\": \"Sample text content\",\n    \"responsible\": 0,\n    \"notify_request_submitted\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update estimate_request_forms",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_forms/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_forms",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"form_key\": \"updated_form_key\",\n    \"type\": \"updated_type\",\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete estimate_request_forms",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_forms/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_forms",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema estimate_request_forms",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_forms/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_forms",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List estimate_request_status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_status",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_status"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get estimate_request_status by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_status",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create estimate_request_status",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_status",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_status"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"statusorder\": 0,\n    \"color\": \"sample_color\",\n    \"flag\": \"sample_flag\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update estimate_request_status",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_status",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"statusorder\": 1,\n    \"color\": \"updated_color\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete estimate_request_status",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_status",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema estimate_request_status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_request_status/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_request_status",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List estimate_requests",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_requests",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_requests"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get estimate_requests by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_requests/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_requests",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create estimate_requests",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_requests",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_requests"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"user@example.com\",\n    \"submission\": \"Sample text content\",\n    \"last_status_change\": \"2026-05-16 12:54:23\",\n    \"date_estimated\": \"2026-05-16 12:54:23\",\n    \"from_form_id\": 0,\n    \"assigned\": 0,\n    \"status\": 1,\n    \"default_language\": 0,\n    \"date_added\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update estimate_requests",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_requests/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_requests",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"user@example.com\",\n    \"submission\": \"Updated text content\",\n    \"last_status_change\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete estimate_requests",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_requests/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_requests",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema estimate_requests",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimate_requests/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimate_requests",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List estimates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimates"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get estimates by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create estimates",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimates"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"sent\": 0,\n    \"datesend\": \"2026-05-16 12:54:23\",\n    \"clientid\": 0,\n    \"deleted_customer_name\": \"sample_deleted_customer_name\",\n    \"project_id\": 0,\n    \"number\": 0,\n    \"prefix\": \"sample_prefix\",\n    \"number_format\": 0,\n    \"formatted_number\": \"sample_formatted_number\",\n    \"hash\": \"sample_hash\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"expirydate\": \"2026-05-16 12:54:23\",\n    \"currency\": 0,\n    \"subtotal\": 0,\n    \"total_tax\": 0,\n    \"total\": 0,\n    \"adjustment\": 0,\n    \"status\": 1,\n    \"clientnote\": \"Sample text content\",\n    \"adminnote\": 0,\n    \"discount_percent\": 0,\n    \"discount_total\": 0,\n    \"discount_type\": \"sample_discount_type\",\n    \"invoiceid\": 0,\n    \"invoiced_date\": \"2026-05-16 12:54:23\",\n    \"terms\": \"Sample text content\",\n    \"reference_no\": \"sample_reference_no\",\n    \"sale_agent\": 0,\n    \"billing_street\": \"sample_billing_street\",\n    \"billing_city\": \"sample_billing_city\",\n    \"billing_state\": \"sample_billing_state\",\n    \"billing_zip\": \"sample_billing_zip\",\n    \"billing_country\": 0,\n    \"shipping_street\": \"sample_shipping_street\",\n    \"shipping_city\": \"sample_shipping_city\",\n    \"shipping_state\": \"sample_shipping_state\",\n    \"shipping_zip\": \"sample_shipping_zip\",\n    \"shipping_country\": 0,\n    \"include_shipping\": 0,\n    \"show_shipping_on_estimate\": 0,\n    \"show_quantity_as\": 0,\n    \"pipeline_order\": 0,\n    \"is_expiry_notified\": 1,\n    \"acceptance_firstname\": \"sample_acceptance_firstname\",\n    \"acceptance_lastname\": \"sample_acceptance_lastname\",\n    \"acceptance_email\": \"user@example.com\",\n    \"acceptance_date\": \"2026-05-16 12:54:23\",\n    \"acceptance_ip\": \"sample_acceptance_ip\",\n    \"signature\": \"sample_signature\",\n    \"short_link\": \"sample_short_link\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update estimates",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimates",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"sent\": 1,\n    \"datesend\": \"2026-05-16 12:54:23\",\n    \"clientid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete estimates",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema estimates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/estimates/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "estimates",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List events",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/events",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "events"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get events by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/events/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "events",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create events",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/events",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "events"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"userid\": 0,\n    \"start\": \"2026-05-16 12:54:23\",\n    \"end\": \"2026-05-16 12:54:23\",\n    \"public\": 0,\n    \"color\": \"sample_color\",\n    \"isstartnotified\": 0,\n    \"reminder_before\": 0,\n    \"reminder_before_type\": \"sample_reminder_before_type\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update events",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/events/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "events",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"userid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete events",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/events/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "events",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema events",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/events/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "events",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List expenses",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get expenses by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create expenses",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"category\": 0,\n    \"currency\": 0,\n    \"amount\": 0,\n    \"tax\": 0,\n    \"tax2\": 0,\n    \"reference_no\": \"sample_reference_no\",\n    \"note\": \"Sample text content\",\n    \"expense_name\": \"sample_expense_name\",\n    \"clientid\": 0,\n    \"project_id\": 0,\n    \"billable\": 0,\n    \"invoiceid\": 0,\n    \"paymentmode\": \"sample_paymentmode\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"recurring_type\": \"sample_recurring_type\",\n    \"repeat_every\": 0,\n    \"recurring\": 0,\n    \"cycles\": 0,\n    \"total_cycles\": 0,\n    \"custom_recurring\": 0,\n    \"last_recurring_date\": \"2026-05-16 12:54:23\",\n    \"create_invoice_billable\": 0,\n    \"send_invoice_to_customer\": 0,\n    \"recurring_from\": 0,\n    \"dateadded\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update expenses",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"category\": 1,\n    \"currency\": 1,\n    \"amount\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete expenses",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema expenses",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List expenses_categories",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses_categories",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses_categories"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get expenses_categories by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses_categories/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses_categories",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create expenses_categories",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses_categories",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses_categories"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update expenses_categories",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses_categories/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses_categories",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete expenses_categories",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses_categories/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses_categories",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema expenses_categories",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/expenses_categories/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "expenses_categories",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List files",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/files",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "files"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get files by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "files",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create files",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/files",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "files"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"file_name\": \"sample_file_name\",\n    \"filetype\": \"sample_filetype\",\n    \"visible_to_customer\": 0,\n    \"attachment_key\": \"sample_attachment_key\",\n    \"external\": \"sample_external\",\n    \"external_link\": \"Sample text content\",\n    \"thumbnail_link\": \"Sample text content\",\n    \"staffid\": 0,\n    \"contact_id\": 0,\n    \"task_comment_id\": 0,\n    \"dateadded\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update files",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "files",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"file_name\": \"updated_file_name\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete files",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "files",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema files",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/files/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "files",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List filter_defaults",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filter_defaults",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filter_defaults"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get filter_defaults by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filter_defaults/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filter_defaults",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create filter_defaults",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filter_defaults",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filter_defaults"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"filter_id\": 0,\n    \"staff_id\": 0,\n    \"identifier\": \"sample_identifier\",\n    \"view\": \"sample_view\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update filter_defaults",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filter_defaults/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filter_defaults",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"filter_id\": 1,\n    \"staff_id\": 1,\n    \"identifier\": \"updated_identifier\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete filter_defaults",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filter_defaults/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filter_defaults",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema filter_defaults",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filter_defaults/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filter_defaults",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List filters",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filters",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filters"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get filters by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filters",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create filters",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filters",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filters"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"builder\": \"Sample text content\",\n    \"staff_id\": 0,\n    \"identifier\": \"sample_identifier\",\n    \"is_shared\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update filters",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filters",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"builder\": \"Updated text content\",\n    \"staff_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete filters",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filters",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema filters",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/filters/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "filters",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List form_question_box",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get form_question_box by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create form_question_box",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"boxtype\": \"sample_boxtype\",\n    \"questionid\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update form_question_box",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"boxtype\": \"updated_boxtype\",\n    \"questionid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete form_question_box",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema form_question_box",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List form_question_box_description",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box_description",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box_description"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get form_question_box_description by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box_description/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box_description",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create form_question_box_description",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box_description",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box_description"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Sample description\",\n    \"boxid\": \"Sample text content\",\n    \"questionid\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update form_question_box_description",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box_description/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box_description",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Updated content\",\n    \"boxid\": \"Updated text content\",\n    \"questionid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete form_question_box_description",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box_description/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box_description",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema form_question_box_description",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_question_box_description/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_question_box_description",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List form_questions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_questions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_questions"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get form_questions by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_questions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_questions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create form_questions",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_questions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_questions"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"question\": \"Sample text content\",\n    \"required\": 0,\n    \"question_order\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update form_questions",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_questions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_questions",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"question\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete form_questions",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_questions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_questions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema form_questions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_questions/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_questions",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List form_results",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_results",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_results"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get form_results by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_results/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_results",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create form_results",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_results",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_results"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"boxid\": 0,\n    \"boxdescriptionid\": 0,\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"questionid\": 0,\n    \"answer\": \"Sample text content\",\n    \"resultsetid\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update form_results",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_results/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_results",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"boxid\": 1,\n    \"boxdescriptionid\": 1,\n    \"rel_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete form_results",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_results/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_results",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema form_results",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/form_results/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "form_results",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List gdpr_requests",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/gdpr_requests",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "gdpr_requests"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get gdpr_requests by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/gdpr_requests/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "gdpr_requests",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create gdpr_requests",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/gdpr_requests",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "gdpr_requests"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"clientid\": 0,\n    \"contact_id\": 0,\n    \"lead_id\": 0,\n    \"request_type\": \"sample_request_type\",\n    \"status\": 1,\n    \"request_date\": \"2026-05-16 12:54:23\",\n    \"request_from\": \"sample_request_from\",\n    \"description\": \"Sample description\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update gdpr_requests",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/gdpr_requests/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "gdpr_requests",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"clientid\": 1,\n    \"contact_id\": 1,\n    \"lead_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete gdpr_requests",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/gdpr_requests/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "gdpr_requests",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema gdpr_requests",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/gdpr_requests/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "gdpr_requests",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List customer_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_groups"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get customer_groups by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create customer_groups",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_groups"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"groupid\": 0,\n    \"customer_id\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update customer_groups",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_groups",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"groupid\": 1,\n    \"customer_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete customer_groups",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema customer_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/customer_groups/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "customer_groups",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List items_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items_groups"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get items_groups by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create items_groups",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items_groups"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update items_groups",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items_groups",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete items_groups",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema items_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items_groups/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items_groups",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List payments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get payments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create payments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"invoiceid\": 0,\n    \"amount\": 0,\n    \"paymentmode\": \"sample_paymentmode\",\n    \"paymentmethod\": \"sample_paymentmethod\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"daterecorded\": \"2026-05-16 12:54:23\",\n    \"note\": \"Sample text content\",\n    \"transactionid\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update payments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"invoiceid\": 1,\n    \"amount\": 1,\n    \"paymentmode\": \"updated_paymentmode\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete payments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema payments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List invoices",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/invoices",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "invoices"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get invoices by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/invoices/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "invoices",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create invoices",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/invoices",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "invoices"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"sent\": 0,\n    \"datesend\": \"2026-05-16 12:54:23\",\n    \"clientid\": 0,\n    \"deleted_customer_name\": \"sample_deleted_customer_name\",\n    \"number\": 0,\n    \"prefix\": \"sample_prefix\",\n    \"number_format\": 0,\n    \"formatted_number\": \"sample_formatted_number\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"duedate\": \"2026-05-16 12:54:23\",\n    \"currency\": 0,\n    \"subtotal\": 0,\n    \"total_tax\": 0,\n    \"total\": 0,\n    \"adjustment\": 0,\n    \"hash\": \"sample_hash\",\n    \"status\": 1,\n    \"clientnote\": \"Sample text content\",\n    \"adminnote\": 0,\n    \"last_overdue_reminder\": \"2026-05-16 12:54:23\",\n    \"last_due_reminder\": \"2026-05-16 12:54:23\",\n    \"cancel_overdue_reminders\": 0,\n    \"allowed_payment_modes\": \"Sample text content\",\n    \"discount_percent\": 0,\n    \"discount_total\": 0,\n    \"discount_type\": \"sample_discount_type\",\n    \"recurring\": 0,\n    \"recurring_type\": \"sample_recurring_type\",\n    \"custom_recurring\": 0,\n    \"cycles\": 0,\n    \"total_cycles\": 0,\n    \"is_recurring_from\": 1,\n    \"last_recurring_date\": \"2026-05-16 12:54:23\",\n    \"terms\": \"Sample text content\",\n    \"sale_agent\": 0,\n    \"billing_street\": \"sample_billing_street\",\n    \"billing_city\": \"sample_billing_city\",\n    \"billing_state\": \"sample_billing_state\",\n    \"billing_zip\": \"sample_billing_zip\",\n    \"billing_country\": 0,\n    \"shipping_street\": \"sample_shipping_street\",\n    \"shipping_city\": \"sample_shipping_city\",\n    \"shipping_state\": \"sample_shipping_state\",\n    \"shipping_zip\": \"sample_shipping_zip\",\n    \"shipping_country\": 0,\n    \"include_shipping\": 0,\n    \"show_shipping_on_invoice\": 0,\n    \"show_quantity_as\": 0,\n    \"project_id\": 0,\n    \"subscription_id\": 0,\n    \"short_link\": \"sample_short_link\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update invoices",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/invoices/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "invoices",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"sent\": 1,\n    \"datesend\": \"2026-05-16 12:54:23\",\n    \"clientid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete invoices",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/invoices/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "invoices",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema invoices",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/invoices/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "invoices",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List item_tax",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/item_tax",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "item_tax"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get item_tax by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/item_tax/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "item_tax",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create item_tax",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/item_tax",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "item_tax"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"itemid\": 0,\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"taxrate\": 0,\n    \"taxname\": \"sample_taxname\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update item_tax",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/item_tax/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "item_tax",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"itemid\": 1,\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete item_tax",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/item_tax/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "item_tax",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema item_tax",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/item_tax/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "item_tax",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List itemable",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/itemable",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "itemable"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get itemable by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/itemable/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "itemable",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create itemable",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/itemable",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "itemable"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"description\": \"Sample description\",\n    \"long_description\": \"Sample text content\",\n    \"qty\": 0,\n    \"rate\": 0,\n    \"unit\": \"sample_unit\",\n    \"is_optional\": 1,\n    \"is_selected\": 1,\n    \"item_order\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update itemable",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/itemable/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "itemable",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete itemable",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/itemable/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "itemable",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema itemable",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/itemable/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "itemable",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get items by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create items",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Sample description\",\n    \"long_description\": \"Sample text content\",\n    \"rate\": 0,\n    \"tax\": 0,\n    \"tax2\": 0,\n    \"unit\": \"sample_unit\",\n    \"group_id\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update items",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Updated content\",\n    \"long_description\": \"Updated text content\",\n    \"rate\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete items",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/items/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "items",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List knowledge_base_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base_groups"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get knowledge_base_groups by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create knowledge_base_groups",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base_groups"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"group_slug\": \"Sample text content\",\n    \"description\": \"Sample description\",\n    \"active\": 1,\n    \"color\": \"sample_color\",\n    \"group_order\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update knowledge_base_groups",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base_groups",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"group_slug\": \"Updated text content\",\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete knowledge_base_groups",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema knowledge_base_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base_groups/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base_groups",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List knowedge_base_article_feedback",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowedge_base_article_feedback",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowedge_base_article_feedback"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get knowedge_base_article_feedback by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowedge_base_article_feedback/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowedge_base_article_feedback",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create knowedge_base_article_feedback",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowedge_base_article_feedback",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowedge_base_article_feedback"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"articleid\": 0,\n    \"answer\": 0,\n    \"ip\": \"sample_ip\",\n    \"date\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update knowedge_base_article_feedback",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowedge_base_article_feedback/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowedge_base_article_feedback",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"articleid\": 1,\n    \"answer\": 1,\n    \"ip\": \"updated_ip\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete knowedge_base_article_feedback",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowedge_base_article_feedback/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowedge_base_article_feedback",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema knowedge_base_article_feedback",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowedge_base_article_feedback/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowedge_base_article_feedback",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List knowledge_base",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get knowledge_base by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create knowledge_base",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"articlegroup\": 0,\n    \"subject\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"slug\": \"Sample text content\",\n    \"active\": 1,\n    \"article_order\": 0,\n    \"staff_article\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update knowledge_base",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"articlegroup\": 1,\n    \"subject\": \"Updated title\",\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete knowledge_base",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema knowledge_base",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/knowledge_base/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "knowledge_base",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List lead_activity_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_activity_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_activity_log"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get lead_activity_log by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_activity_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_activity_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create lead_activity_log",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_activity_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_activity_log"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"leadid\": 0,\n    \"description\": \"Sample description\",\n    \"additional_data\": \"Sample text content\",\n    \"date\": \"2026-05-16 12:54:23\",\n    \"staffid\": 0,\n    \"full_name\": \"sample_full_name\",\n    \"custom_activity\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update lead_activity_log",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_activity_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_activity_log",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"leadid\": 1,\n    \"description\": \"Updated content\",\n    \"additional_data\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete lead_activity_log",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_activity_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_activity_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema lead_activity_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_activity_log/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_activity_log",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List lead_integration_emails",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_integration_emails",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_integration_emails"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get lead_integration_emails by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_integration_emails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_integration_emails",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create lead_integration_emails",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_integration_emails",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_integration_emails"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"subject\": \"Sample title\",\n    \"body\": \"Sample text content\",\n    \"dateadded\": \"2026-05-16 12:54:23\",\n    \"leadid\": 0,\n    \"emailid\": \"user@example.com\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update lead_integration_emails",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_integration_emails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_integration_emails",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"subject\": \"Updated title\",\n    \"body\": \"Updated text content\",\n    \"dateadded\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete lead_integration_emails",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_integration_emails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_integration_emails",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema lead_integration_emails",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/lead_integration_emails/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "lead_integration_emails",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List leads_sources",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_sources",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_sources"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get leads_sources by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_sources/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_sources",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create leads_sources",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_sources",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_sources"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update leads_sources",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_sources/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_sources",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete leads_sources",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_sources/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_sources",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema leads_sources",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_sources/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_sources",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List leads_status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_status",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_status"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get leads_status by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_status",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create leads_status",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_status",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_status"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"statusorder\": 0,\n    \"color\": \"sample_color\",\n    \"isdefault\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update leads_status",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_status",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"statusorder\": 1,\n    \"color\": \"updated_color\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete leads_status",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_status",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema leads_status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_status/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_status",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List leads",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get leads by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create leads",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"hash\": \"sample_hash\",\n    \"name\": \"Sample title\",\n    \"title\": \"Sample title\",\n    \"company\": \"ACME Corp\",\n    \"description\": \"Sample description\",\n    \"country\": \"1\",\n    \"zip\": \"10001\",\n    \"city\": \"New York\",\n    \"state\": \"NY\",\n    \"address\": \"123 Main St\",\n    \"assigned\": 0,\n    \"dateadded\": \"2026-05-16 12:54:23\",\n    \"from_form_id\": 0,\n    \"status\": 1,\n    \"source\": 0,\n    \"lastcontact\": \"2026-05-16 12:54:23\",\n    \"dateassigned\": \"2026-05-16 12:54:23\",\n    \"last_status_change\": \"2026-05-16 12:54:23\",\n    \"email\": \"user@example.com\",\n    \"website\": \"https://example.com\",\n    \"leadorder\": 0,\n    \"phonenumber\": \"+1234567890\",\n    \"date_converted\": \"2026-05-16 12:54:23\",\n    \"lost\": 0,\n    \"junk\": 0,\n    \"last_lead_status\": 0,\n    \"is_imported_from_email_integration\": \"user@example.com\",\n    \"email_integration_uid\": \"user@example.com\",\n    \"is_public\": 1,\n    \"default_language\": \"sample_default_language\",\n    \"client_id\": 0,\n    \"lead_value\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update leads",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"hash\": \"updated_hash\",\n    \"name\": \"Updated title\",\n    \"title\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete leads",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema leads",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List leads_email_integration",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_email_integration",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_email_integration"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get leads_email_integration by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_email_integration/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_email_integration",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create leads_email_integration",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_email_integration",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_email_integration"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"active\": 1,\n    \"email\": \"user@example.com\",\n    \"imap_server\": \"sample_imap_server\",\n    \"password\": \"SecureP@ss123\",\n    \"check_every\": 0,\n    \"responsible\": 0,\n    \"lead_source\": 0,\n    \"lead_status\": 0,\n    \"encryption\": \"sample_encryption\",\n    \"folder\": \"sample_folder\",\n    \"last_run\": \"sample_last_run\",\n    \"notify_lead_imported\": 0,\n    \"notify_lead_contact_more_times\": 0,\n    \"notify_type\": \"sample_notify_type\",\n    \"notify_ids\": \"Sample text content\",\n    \"mark_public\": 0,\n    \"only_loop_on_unseen_emails\": \"user@example.com\",\n    \"delete_after_import\": 0,\n    \"create_task_if_customer\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update leads_email_integration",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_email_integration/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_email_integration",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"active\": 1,\n    \"email\": \"user@example.com\",\n    \"imap_server\": \"updated_imap_server\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete leads_email_integration",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_email_integration/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_email_integration",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema leads_email_integration",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/leads_email_integration/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "leads_email_integration",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List mail_queue",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/mail_queue",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "mail_queue"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get mail_queue by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/mail_queue/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "mail_queue",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create mail_queue",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/mail_queue",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "mail_queue"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"engine\": \"sample_engine\",\n    \"email\": \"user@example.com\",\n    \"cc\": \"Sample text content\",\n    \"bcc\": \"Sample text content\",\n    \"message\": \"Sample text content\",\n    \"alt_message\": \"Sample text content\",\n    \"status\": 1,\n    \"date\": \"2026-05-16 12:54:23\",\n    \"headers\": \"Sample text content\",\n    \"attachments\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update mail_queue",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/mail_queue/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "mail_queue",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"engine\": \"updated_engine\",\n    \"email\": \"user@example.com\",\n    \"cc\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete mail_queue",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/mail_queue/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "mail_queue",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema mail_queue",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/mail_queue/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "mail_queue",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List migrations",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/migrations",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "migrations"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get migrations by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/migrations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "migrations",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create migrations",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/migrations",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "migrations"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"version\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update migrations",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/migrations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "migrations",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"version\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete migrations",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/migrations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "migrations",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema migrations",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/migrations/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "migrations",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List modules",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/modules",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "modules"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get modules by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/modules/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "modules",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create modules",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/modules",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "modules"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"module_name\": \"sample_module_name\",\n    \"installed_version\": \"sample_installed_version\",\n    \"active\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update modules",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/modules/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "modules",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"module_name\": \"updated_module_name\",\n    \"installed_version\": \"updated_installed_version\",\n    \"active\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete modules",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/modules/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "modules",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema modules",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/modules/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "modules",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List newsfeed_comment_likes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_comment_likes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_comment_likes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get newsfeed_comment_likes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_comment_likes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_comment_likes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create newsfeed_comment_likes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_comment_likes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_comment_likes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"postid\": 0,\n    \"commentid\": 0,\n    \"userid\": 0,\n    \"dateliked\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update newsfeed_comment_likes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_comment_likes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_comment_likes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"postid\": 1,\n    \"commentid\": 1,\n    \"userid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete newsfeed_comment_likes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_comment_likes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_comment_likes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema newsfeed_comment_likes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_comment_likes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_comment_likes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List newsfeed_post_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_comments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get newsfeed_post_comments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create newsfeed_post_comments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_comments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Sample description\",\n    \"userid\": 0,\n    \"postid\": 0,\n    \"dateadded\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update newsfeed_post_comments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_comments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Updated content\",\n    \"userid\": 1,\n    \"postid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete newsfeed_post_comments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema newsfeed_post_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_comments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_comments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List newsfeed_post_likes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_likes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_likes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get newsfeed_post_likes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_likes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_likes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create newsfeed_post_likes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_likes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_likes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"postid\": 0,\n    \"userid\": 0,\n    \"dateliked\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update newsfeed_post_likes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_likes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_likes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"postid\": 1,\n    \"userid\": 1,\n    \"dateliked\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete newsfeed_post_likes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_likes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_likes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema newsfeed_post_likes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_post_likes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_post_likes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List newsfeed_posts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_posts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_posts"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get newsfeed_posts by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_posts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_posts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create newsfeed_posts",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_posts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_posts"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"creator\": 0,\n    \"visibility\": \"sample_visibility\",\n    \"content\": \"Sample description\",\n    \"pinned\": 0,\n    \"datepinned\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update newsfeed_posts",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_posts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_posts",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"creator\": 1,\n    \"visibility\": \"updated_visibility\",\n    \"content\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete newsfeed_posts",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_posts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_posts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema newsfeed_posts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/newsfeed_posts/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "newsfeed_posts",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List notes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get notes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create notes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"description\": \"Sample description\",\n    \"date_contacted\": \"2026-05-16 12:54:23\",\n    \"dateadded\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update notes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete notes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema notes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List notifications",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notifications",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notifications"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get notifications by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notifications/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notifications",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create notifications",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notifications",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notifications"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"isread\": 0,\n    \"isread_inline\": 0,\n    \"date\": \"2026-05-16 12:54:23\",\n    \"description\": \"Sample description\",\n    \"fromuserid\": 0,\n    \"fromclientid\": 0,\n    \"from_fullname\": \"sample_from_fullname\",\n    \"touserid\": 0,\n    \"fromcompany\": 0,\n    \"link\": \"Sample text content\",\n    \"additional_data\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update notifications",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notifications/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notifications",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"isread\": 1,\n    \"isread_inline\": 1,\n    \"date\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete notifications",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notifications/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notifications",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema notifications",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/notifications/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "notifications",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List payment_attempts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_attempts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_attempts"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get payment_attempts by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_attempts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_attempts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create payment_attempts",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_attempts",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_attempts"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"reference\": \"sample_reference\",\n    \"invoice_id\": 0,\n    \"amount\": 0,\n    \"fee\": 0,\n    \"payment_gateway\": \"sample_payment_gateway\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update payment_attempts",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_attempts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_attempts",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"reference\": \"updated_reference\",\n    \"invoice_id\": 1,\n    \"amount\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete payment_attempts",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_attempts/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_attempts",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema payment_attempts",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_attempts/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_attempts",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List payment_modes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_modes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_modes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get payment_modes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_modes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_modes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create payment_modes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_modes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_modes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"show_on_pdf\": 0,\n    \"invoices_only\": 0,\n    \"expenses_only\": 0,\n    \"selected_by_default\": 0,\n    \"active\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update payment_modes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_modes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_modes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"show_on_pdf\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete payment_modes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_modes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_modes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema payment_modes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/payment_modes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "payment_modes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List pinned_projects",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/pinned_projects",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "pinned_projects"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get pinned_projects by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/pinned_projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "pinned_projects",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create pinned_projects",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/pinned_projects",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "pinned_projects"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 0,\n    \"staff_id\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update pinned_projects",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/pinned_projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "pinned_projects",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 1,\n    \"staff_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete pinned_projects",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/pinned_projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "pinned_projects",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema pinned_projects",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/pinned_projects/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "pinned_projects",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_custom_filters",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_filters",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_filters"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_custom_filters by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_filters",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_custom_filters",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_filters",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_filters"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 0,\n    \"staff_id\": 0,\n    \"name\": \"Sample title\",\n    \"filter_data\": \"Sample text content\",\n    \"is_default\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_custom_filters",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_filters",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 1,\n    \"staff_id\": 1,\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_custom_filters",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_filters",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_custom_filters",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_filters/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_filters",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_custom_indexes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_indexes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_indexes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_custom_indexes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_indexes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_indexes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_custom_indexes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_indexes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_indexes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 0,\n    \"table_name\": \"sample_table_name\",\n    \"column_names\": \"Sample text content\",\n    \"index_name\": \"sample_index_name\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_custom_indexes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_indexes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_indexes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 1,\n    \"table_name\": \"updated_table_name\",\n    \"column_names\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_custom_indexes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_indexes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_indexes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_custom_indexes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_custom_indexes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_custom_indexes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_permission_audit_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_permission_audit_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_permission_audit_log"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_permission_audit_log by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_permission_audit_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_permission_audit_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_permission_audit_log",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_permission_audit_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_permission_audit_log"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 0,\n    \"staff_id\": 0,\n    \"action\": \"value\",\n    \"permission_type\": \"value\",\n    \"permission_id\": 0,\n    \"ip_address\": \"sample_ip_address\",\n    \"user_agent\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_permission_audit_log",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_permission_audit_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_permission_audit_log",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 1,\n    \"staff_id\": 1,\n    \"action\": \"value\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_permission_audit_log",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_permission_audit_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_permission_audit_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_permission_audit_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_permission_audit_log/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_permission_audit_log",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_report_group_items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_group_items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_group_items"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_report_group_items by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_group_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_group_items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_report_group_items",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_group_items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_group_items"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"group_id\": 0,\n    \"view_id\": 0,\n    \"sort_order\": 0,\n    \"tab_label\": \"sample_tab_label\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_report_group_items",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_group_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_group_items",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"group_id\": 1,\n    \"view_id\": 1,\n    \"sort_order\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_report_group_items",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_group_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_group_items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_report_group_items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_group_items/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_group_items",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_report_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_groups"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_report_groups by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_report_groups",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_groups",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_groups"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"route\": \"sample_route\",\n    \"created_by\": 0,\n    \"status\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_report_groups",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_groups",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"route\": \"updated_route\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_report_groups",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_groups/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_groups",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_report_groups",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_report_groups/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_report_groups",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_table_relations",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_table_relations",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_table_relations"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_table_relations by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_table_relations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_table_relations",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_table_relations",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_table_relations",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_table_relations"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"table_a\": \"sample_table_a\",\n    \"table_b\": \"sample_table_b\",\n    \"join_type\": \"value\",\n    \"join_condition\": \"Sample text content\",\n    \"is_default\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_table_relations",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_table_relations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_table_relations",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"table_a\": \"updated_table_a\",\n    \"table_b\": \"updated_table_b\",\n    \"join_type\": \"value\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_table_relations",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_table_relations/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_table_relations",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_table_relations",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_table_relations/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_table_relations",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_view_permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_view_permissions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_view_permissions"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_view_permissions by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_view_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_view_permissions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_view_permissions",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_view_permissions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_view_permissions"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 0,\n    \"permission_type\": \"value\",\n    \"permission_id\": 0,\n    \"can_view\": 0,\n    \"can_edit\": 0,\n    \"can_delete\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_view_permissions",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_view_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_view_permissions",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"view_id\": 1,\n    \"permission_type\": \"value\",\n    \"permission_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_view_permissions",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_view_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_view_permissions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_view_permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_view_permissions/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_view_permissions",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List polydb_views",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_views",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_views"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get polydb_views by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_views/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_views",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create polydb_views",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_views",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_views"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"config_json\": \"Sample text content\",\n    \"route\": \"sample_route\",\n    \"created_by\": 0,\n    \"is_public\": 1,\n    \"public_access\": 0,\n    \"status\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update polydb_views",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_views/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_views",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"config_json\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete polydb_views",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_views/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_views",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema polydb_views",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/polydb_views/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "polydb_views",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List project_activity",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_activity",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_activity"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get project_activity by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_activity/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_activity",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create project_activity",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_activity",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_activity"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 0,\n    \"staff_id\": 0,\n    \"contact_id\": 0,\n    \"fullname\": \"sample_fullname\",\n    \"visible_to_customer\": 0,\n    \"description_key\": \"sample_description_key\",\n    \"additional_data\": \"Sample text content\",\n    \"dateadded\": \"2026-05-16 12:54:23\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update project_activity",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_activity/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_activity",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 1,\n    \"staff_id\": 1,\n    \"contact_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete project_activity",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_activity/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_activity",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema project_activity",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_activity/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_activity",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List project_files",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_files",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_files"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get project_files by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_files",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create project_files",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_files",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_files"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"file_name\": \"sample_file_name\",\n    \"original_file_name\": \"Sample text content\",\n    \"subject\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"filetype\": \"sample_filetype\",\n    \"dateadded\": \"2026-05-16 12:54:24\",\n    \"project_id\": 0,\n    \"visible_to_customer\": 0,\n    \"staffid\": 0,\n    \"contact_id\": 0,\n    \"external\": \"sample_external\",\n    \"external_link\": \"Sample text content\",\n    \"thumbnail_link\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update project_files",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_files",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"file_name\": \"updated_file_name\",\n    \"original_file_name\": \"Updated text content\",\n    \"subject\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete project_files",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_files",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema project_files",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_files/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_files",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List project_members",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_members",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_members"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get project_members by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_members/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_members",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create project_members",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_members",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_members"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 0,\n    \"staff_id\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update project_members",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_members/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_members",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 1,\n    \"staff_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete project_members",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_members/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_members",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema project_members",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_members/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_members",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List project_notes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_notes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_notes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get project_notes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_notes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create project_notes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_notes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_notes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 0,\n    \"title\": \"Sample title\",\n    \"content\": \"Sample description\",\n    \"staff_id\": 0,\n    \"dateadded\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update project_notes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_notes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 1,\n    \"title\": \"Updated title\",\n    \"content\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete project_notes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_notes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_notes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema project_notes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_notes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_notes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List project_settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_settings",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_settings"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get project_settings by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_settings/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_settings",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create project_settings",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_settings",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_settings"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 0,\n    \"name\": \"Sample title\",\n    \"value\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update project_settings",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_settings/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_settings",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 1,\n    \"name\": \"Updated title\",\n    \"value\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete project_settings",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_settings/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_settings",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema project_settings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/project_settings/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "project_settings",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List projectdiscussioncomments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussioncomments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussioncomments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get projectdiscussioncomments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussioncomments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussioncomments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create projectdiscussioncomments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussioncomments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussioncomments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"discussion_id\": 0,\n    \"discussion_type\": \"sample_discussion_type\",\n    \"parent\": 0,\n    \"created\": \"2026-05-16 12:54:24\",\n    \"modified\": \"2026-05-16 12:54:24\",\n    \"content\": \"Sample description\",\n    \"staff_id\": 0,\n    \"contact_id\": 0,\n    \"fullname\": \"sample_fullname\",\n    \"file_name\": \"sample_file_name\",\n    \"file_mime_type\": \"sample_file_mime_type\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update projectdiscussioncomments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussioncomments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussioncomments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"discussion_id\": 1,\n    \"discussion_type\": \"updated_discussion_type\",\n    \"parent\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete projectdiscussioncomments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussioncomments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussioncomments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema projectdiscussioncomments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussioncomments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussioncomments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List projectdiscussions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussions"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get projectdiscussions by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create projectdiscussions",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussions"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 0,\n    \"subject\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"show_to_customer\": 0,\n    \"staff_id\": 0,\n    \"contact_id\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update projectdiscussions",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussions",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"project_id\": 1,\n    \"subject\": \"Updated title\",\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete projectdiscussions",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema projectdiscussions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projectdiscussions/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projectdiscussions",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List projects",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projects",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projects"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get projects by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projects",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create projects",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projects",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projects"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"status\": 1,\n    \"clientid\": 0,\n    \"billing_type\": 0,\n    \"start_date\": \"2026-05-16 12:54:24\",\n    \"deadline\": \"2026-05-16 12:54:24\",\n    \"project_created\": \"2026-05-16 12:54:24\",\n    \"date_finished\": \"2026-05-16 12:54:24\",\n    \"progress\": 0,\n    \"progress_from_tasks\": 0,\n    \"project_cost\": 0,\n    \"project_rate_per_hour\": 0,\n    \"estimated_hours\": 0,\n    \"contact_notification\": 0,\n    \"notify_contacts\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update projects",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projects",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"status\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete projects",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projects",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema projects",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/projects/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "projects",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List proposal_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposal_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposal_comments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get proposal_comments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposal_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposal_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create proposal_comments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposal_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposal_comments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Sample description\",\n    \"proposalid\": 0,\n    \"staffid\": 0,\n    \"dateadded\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update proposal_comments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposal_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposal_comments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Updated content\",\n    \"proposalid\": 1,\n    \"staffid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete proposal_comments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposal_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposal_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema proposal_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposal_comments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposal_comments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List proposals",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposals",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposals"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get proposals by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposals/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposals",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create proposals",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposals",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposals"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"subject\": \"Sample title\",\n    \"content\": \"Sample description\",\n    \"total\": 0,\n    \"subtotal\": 0,\n    \"total_tax\": 0,\n    \"adjustment\": 0,\n    \"discount_percent\": 0,\n    \"discount_total\": 0,\n    \"discount_type\": \"sample_discount_type\",\n    \"show_quantity_as\": 0,\n    \"currency\": 0,\n    \"open_till\": \"2026-05-16 12:54:24\",\n    \"date\": \"2026-05-16 12:54:24\",\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"assigned\": 0,\n    \"hash\": \"sample_hash\",\n    \"proposal_to\": \"sample_proposal_to\",\n    \"project_id\": 0,\n    \"country\": \"1\",\n    \"zip\": \"10001\",\n    \"state\": \"NY\",\n    \"city\": \"New York\",\n    \"address\": \"123 Main St\",\n    \"email\": \"user@example.com\",\n    \"phone\": \"+1234567890\",\n    \"allow_comments\": 0,\n    \"status\": 1,\n    \"estimate_id\": 0,\n    \"invoice_id\": 0,\n    \"date_converted\": \"2026-05-16 12:54:24\",\n    \"pipeline_order\": 0,\n    \"is_expiry_notified\": 1,\n    \"acceptance_firstname\": \"sample_acceptance_firstname\",\n    \"acceptance_lastname\": \"sample_acceptance_lastname\",\n    \"acceptance_email\": \"user@example.com\",\n    \"acceptance_date\": \"2026-05-16 12:54:24\",\n    \"acceptance_ip\": \"sample_acceptance_ip\",\n    \"signature\": \"sample_signature\",\n    \"short_link\": \"sample_short_link\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update proposals",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposals/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposals",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"subject\": \"Updated title\",\n    \"content\": \"Updated content\",\n    \"total\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete proposals",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposals/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposals",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema proposals",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/proposals/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "proposals",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List related_items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/related_items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "related_items"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get related_items by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/related_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "related_items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create related_items",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/related_items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "related_items"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"item_id\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update related_items",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/related_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "related_items",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"item_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete related_items",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/related_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "related_items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema related_items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/related_items/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "related_items",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List reminders",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/reminders",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "reminders"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get reminders by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/reminders/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "reminders",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create reminders",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/reminders",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "reminders"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Sample description\",\n    \"date\": \"2026-05-16 12:54:24\",\n    \"isnotified\": 0,\n    \"rel_id\": 0,\n    \"staff\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"notify_by_email\": \"user@example.com\",\n    \"creator\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update reminders",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/reminders/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "reminders",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Updated content\",\n    \"date\": \"2026-05-16 12:54:24\",\n    \"isnotified\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete reminders",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/reminders/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "reminders",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema reminders",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/reminders/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "reminders",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List sales_activity",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sales_activity",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sales_activity"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get sales_activity by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sales_activity/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sales_activity",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create sales_activity",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sales_activity",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sales_activity"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_type\": \"sample_rel_type\",\n    \"rel_id\": 0,\n    \"description\": \"Sample description\",\n    \"additional_data\": \"Sample text content\",\n    \"staffid\": \"sample_staffid\",\n    \"full_name\": \"sample_full_name\",\n    \"date\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update sales_activity",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sales_activity/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sales_activity",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_type\": \"updated_rel_type\",\n    \"rel_id\": 1,\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete sales_activity",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sales_activity/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sales_activity",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema sales_activity",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sales_activity/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sales_activity",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List scheduled_emails",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/scheduled_emails",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "scheduled_emails"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get scheduled_emails by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/scheduled_emails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "scheduled_emails",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create scheduled_emails",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/scheduled_emails",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "scheduled_emails"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"scheduled_at\": \"2026-05-16 12:54:24\",\n    \"contacts\": \"sample_contacts\",\n    \"cc\": \"Sample text content\",\n    \"attach_pdf\": 0,\n    \"template\": \"sample_template\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update scheduled_emails",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/scheduled_emails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "scheduled_emails",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"scheduled_at\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete scheduled_emails",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/scheduled_emails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "scheduled_emails",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema scheduled_emails",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/scheduled_emails/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "scheduled_emails",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List services",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/services",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "services"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get services by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/services/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "services",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create services",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/services",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "services"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update services",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/services/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "services",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete services",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/services/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "services",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema services",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/services/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "services",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List sessions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sessions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sessions"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get sessions by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sessions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sessions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create sessions",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sessions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sessions"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"ip_address\": \"sample_ip_address\",\n    \"timestamp\": 0,\n    \"data\": \"sample_data\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update sessions",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sessions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sessions",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"ip_address\": \"updated_ip_address\",\n    \"timestamp\": 1,\n    \"data\": \"updated_data\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete sessions",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sessions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sessions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema sessions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/sessions/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "sessions",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List shared_customer_files",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/shared_customer_files",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "shared_customer_files"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get shared_customer_files by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/shared_customer_files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "shared_customer_files",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create shared_customer_files",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/shared_customer_files",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "shared_customer_files"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"file_id\": 0,\n    \"contact_id\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update shared_customer_files",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/shared_customer_files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "shared_customer_files",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"file_id\": 1,\n    \"contact_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete shared_customer_files",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/shared_customer_files/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "shared_customer_files",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema shared_customer_files",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/shared_customer_files/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "shared_customer_files",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List spam_filters",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/spam_filters",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "spam_filters"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get spam_filters by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/spam_filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "spam_filters",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create spam_filters",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/spam_filters",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "spam_filters"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"sample_type\",\n    \"rel_type\": \"sample_rel_type\",\n    \"value\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update spam_filters",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/spam_filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "spam_filters",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"updated_type\",\n    \"rel_type\": \"updated_rel_type\",\n    \"value\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete spam_filters",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/spam_filters/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "spam_filters",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema spam_filters",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/spam_filters/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "spam_filters",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List staff",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get staff by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create staff",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"user@example.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"facebook\": \"Sample text content\",\n    \"linkedin\": \"Sample text content\",\n    \"phonenumber\": \"+1234567890\",\n    \"skype\": \"sample_skype\",\n    \"password\": \"SecureP@ss123\",\n    \"last_password_change\": \"2026-05-16 12:54:24\",\n    \"admin\": 0,\n    \"role\": 1,\n    \"active\": 1,\n    \"default_language\": \"sample_default_language\",\n    \"direction\": \"sample_direction\",\n    \"is_not_staff\": 1,\n    \"hourly_rate\": 0,\n    \"email_signature\": \"user@example.com\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update staff",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"user@example.com\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete staff",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema staff",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List staff_departments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_departments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_departments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get staff_departments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_departments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_departments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create staff_departments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_departments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_departments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staffid\": 0,\n    \"departmentid\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update staff_departments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_departments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_departments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staffid\": 1,\n    \"departmentid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete staff_departments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_departments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_departments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema staff_departments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_departments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_departments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List staff_permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_permissions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_permissions"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get staff_permissions by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_permissions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create staff_permissions",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_permissions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_permissions"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staff_id\": 0,\n    \"feature\": \"sample_feature\",\n    \"capability\": \"sample_capability\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update staff_permissions",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_permissions",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staff_id\": 1,\n    \"feature\": \"updated_feature\",\n    \"capability\": \"updated_capability\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete staff_permissions",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_permissions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_permissions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema staff_permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/staff_permissions/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "staff_permissions",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List roles",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/roles",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "roles"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get roles by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/roles/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "roles",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create roles",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/roles",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "roles"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"permissions\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update roles",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/roles/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "roles",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"permissions\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete roles",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/roles/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "roles",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema roles",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/roles/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "roles",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List subscriptions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/subscriptions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "subscriptions"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get subscriptions by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/subscriptions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "subscriptions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create subscriptions",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/subscriptions",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "subscriptions"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"description_in_item\": 0,\n    \"clientid\": 0,\n    \"date\": \"2026-05-16 12:54:24\",\n    \"terms\": \"Sample text content\",\n    \"currency\": 0,\n    \"tax_id\": 0,\n    \"stripe_tax_id\": \"sample_stripe_tax_id\",\n    \"tax_id_2\": 0,\n    \"stripe_tax_id_2\": \"sample_stripe_tax_id_2\",\n    \"stripe_plan_id\": \"Sample text content\",\n    \"stripe_subscription_id\": \"Sample text content\",\n    \"next_billing_cycle\": 0,\n    \"ends_at\": 0,\n    \"status\": 1,\n    \"quantity\": 0,\n    \"project_id\": 0,\n    \"hash\": \"sample_hash\",\n    \"created\": \"2026-05-16 12:54:24\",\n    \"created_from\": 0,\n    \"date_subscribed\": \"2026-05-16 12:54:24\",\n    \"in_test_environment\": 0,\n    \"last_sent_at\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update subscriptions",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/subscriptions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "subscriptions",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"description_in_item\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete subscriptions",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/subscriptions/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "subscriptions",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema subscriptions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/subscriptions/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "subscriptions",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List taggables",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taggables",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taggables"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get taggables by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taggables/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taggables",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create taggables",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taggables",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taggables"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"tag_id\": 0,\n    \"tag_order\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update taggables",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taggables/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taggables",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"tag_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete taggables",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taggables/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taggables",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema taggables",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taggables/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taggables",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tags",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tags",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tags"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tags by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tags/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tags",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tags",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tags",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tags"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tags",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tags/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tags",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tags",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tags/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tags",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tags",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tags/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tags",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List task_assigned",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_assigned",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_assigned"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get task_assigned by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_assigned/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_assigned",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create task_assigned",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_assigned",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_assigned"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staffid\": 0,\n    \"taskid\": 0,\n    \"assigned_from\": 0,\n    \"is_assigned_from_contact\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update task_assigned",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_assigned/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_assigned",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staffid\": 1,\n    \"taskid\": 1,\n    \"assigned_from\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete task_assigned",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_assigned/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_assigned",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema task_assigned",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_assigned/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_assigned",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List task_checklist_items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_checklist_items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_checklist_items"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get task_checklist_items by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_checklist_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_checklist_items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create task_checklist_items",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_checklist_items",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_checklist_items"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"taskid\": 0,\n    \"description\": \"Sample description\",\n    \"finished\": 0,\n    \"dateadded\": \"2026-05-16 12:54:24\",\n    \"finished_from\": 0,\n    \"list_order\": 0,\n    \"assigned\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update task_checklist_items",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_checklist_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_checklist_items",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"taskid\": 1,\n    \"description\": \"Updated content\",\n    \"finished\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete task_checklist_items",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_checklist_items/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_checklist_items",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema task_checklist_items",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_checklist_items/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_checklist_items",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List task_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_comments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get task_comments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create task_comments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_comments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_comments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Sample description\",\n    \"taskid\": 0,\n    \"staffid\": 0,\n    \"contact_id\": 0,\n    \"file_id\": 0,\n    \"dateadded\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update task_comments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_comments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Updated content\",\n    \"taskid\": 1,\n    \"staffid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete task_comments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_comments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_comments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema task_comments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_comments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_comments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List task_followers",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_followers",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_followers"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get task_followers by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_followers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_followers",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create task_followers",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_followers",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_followers"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staffid\": 0,\n    \"taskid\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update task_followers",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_followers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_followers",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staffid\": 1,\n    \"taskid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete task_followers",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_followers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_followers",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema task_followers",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/task_followers/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "task_followers",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List taskstimers",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taskstimers",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taskstimers"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get taskstimers by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taskstimers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taskstimers",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create taskstimers",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taskstimers",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taskstimers"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"task_id\": 0,\n    \"start_time\": \"sample_start_time\",\n    \"end_time\": \"sample_end_time\",\n    \"staff_id\": 0,\n    \"hourly_rate\": 0,\n    \"note\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update taskstimers",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taskstimers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taskstimers",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"task_id\": 1,\n    \"start_time\": \"updated_start_time\",\n    \"end_time\": \"updated_end_time\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete taskstimers",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taskstimers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taskstimers",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema taskstimers",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taskstimers/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taskstimers",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tasks",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tasks by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tasks",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"priority\": 0,\n    \"dateadded\": \"2026-05-16 12:54:24\",\n    \"startdate\": \"2026-05-16 12:54:24\",\n    \"duedate\": \"2026-05-16 12:54:24\",\n    \"datefinished\": \"2026-05-16 12:54:24\",\n    \"is_added_from_contact\": 1,\n    \"status\": 1,\n    \"recurring_type\": \"sample_recurring_type\",\n    \"repeat_every\": 0,\n    \"recurring\": 0,\n    \"is_recurring_from\": 1,\n    \"cycles\": 0,\n    \"total_cycles\": 0,\n    \"custom_recurring\": 0,\n    \"last_recurring_date\": \"2026-05-16 12:54:24\",\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"is_public\": 1,\n    \"billable\": 0,\n    \"billed\": 0,\n    \"invoice_id\": 0,\n    \"hourly_rate\": 0,\n    \"milestone\": 0,\n    \"kanban_order\": 0,\n    \"milestone_order\": 0,\n    \"visible_to_client\": 0,\n    \"deadline_notified\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tasks",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"priority\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tasks",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tasks",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tasks_checklist_templates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks_checklist_templates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks_checklist_templates"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tasks_checklist_templates by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks_checklist_templates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks_checklist_templates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tasks_checklist_templates",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks_checklist_templates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks_checklist_templates"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Sample description\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tasks_checklist_templates",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks_checklist_templates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks_checklist_templates",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tasks_checklist_templates",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks_checklist_templates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks_checklist_templates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tasks_checklist_templates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tasks_checklist_templates/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tasks_checklist_templates",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List taxes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taxes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taxes"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get taxes by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taxes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taxes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create taxes",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taxes",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taxes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"taxrate\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update taxes",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taxes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taxes",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"taxrate\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete taxes",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taxes/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taxes",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema taxes",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/taxes/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "taxes",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List templates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/templates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "templates"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get templates by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/templates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "templates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create templates",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/templates",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "templates"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"type\": \"sample_type\",\n    \"content\": \"Sample description\",\n    \"content_type\": \"sample_content_type\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update templates",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/templates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "templates",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"type\": \"updated_type\",\n    \"content\": \"Updated content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete templates",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/templates/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "templates",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema templates",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/templates/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "templates",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List ticket_attachments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_attachments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_attachments"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get ticket_attachments by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_attachments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_attachments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create ticket_attachments",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_attachments",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_attachments"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"ticketid\": 0,\n    \"replyid\": 0,\n    \"file_name\": \"sample_file_name\",\n    \"filetype\": \"sample_filetype\",\n    \"dateadded\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update ticket_attachments",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_attachments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_attachments",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"ticketid\": 1,\n    \"replyid\": 1,\n    \"file_name\": \"updated_file_name\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete ticket_attachments",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_attachments/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_attachments",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema ticket_attachments",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_attachments/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_attachments",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List ticket_replies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_replies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_replies"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get ticket_replies by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_replies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_replies",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create ticket_replies",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_replies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_replies"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"ticketid\": 0,\n    \"userid\": 0,\n    \"contactid\": 0,\n    \"name\": \"Sample title\",\n    \"email\": \"user@example.com\",\n    \"date\": \"2026-05-16 12:54:24\",\n    \"message\": \"Sample text content\",\n    \"attachment\": 0,\n    \"admin\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update ticket_replies",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_replies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_replies",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"ticketid\": 1,\n    \"userid\": 1,\n    \"contactid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete ticket_replies",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_replies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_replies",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema ticket_replies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/ticket_replies/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "ticket_replies",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tickets",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tickets by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tickets",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"adminreplying\": 0,\n    \"userid\": 0,\n    \"contactid\": 0,\n    \"merged_ticket_id\": 0,\n    \"email\": \"user@example.com\",\n    \"name\": \"Sample title\",\n    \"department\": 0,\n    \"priority\": 0,\n    \"status\": 1,\n    \"service\": 0,\n    \"ticketkey\": \"sample_ticketkey\",\n    \"subject\": \"Sample title\",\n    \"message\": \"Sample text content\",\n    \"admin\": 0,\n    \"date\": \"2026-05-16 12:54:24\",\n    \"project_id\": 0,\n    \"lastreply\": \"2026-05-16 12:54:24\",\n    \"clientread\": 0,\n    \"adminread\": 0,\n    \"assigned\": 0,\n    \"staff_id_replying\": 0,\n    \"cc\": \"sample_cc\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tickets",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"adminreplying\": 0,\n    \"userid\": 1,\n    \"contactid\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tickets",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tickets",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tickets_pipe_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_pipe_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_pipe_log"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tickets_pipe_log by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_pipe_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_pipe_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tickets_pipe_log",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_pipe_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_pipe_log"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"date\": \"2026-05-16 12:54:24\",\n    \"email_to\": \"user@example.com\",\n    \"name\": \"Sample title\",\n    \"subject\": \"Sample title\",\n    \"message\": \"Sample text content\",\n    \"email\": \"user@example.com\",\n    \"status\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tickets_pipe_log",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_pipe_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_pipe_log",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"date\": \"2026-05-16 12:54:24\",\n    \"email_to\": \"user@example.com\",\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tickets_pipe_log",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_pipe_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_pipe_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tickets_pipe_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_pipe_log/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_pipe_log",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tickets_predefined_replies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_predefined_replies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_predefined_replies"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tickets_predefined_replies by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_predefined_replies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_predefined_replies",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tickets_predefined_replies",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_predefined_replies",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_predefined_replies"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"message\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tickets_predefined_replies",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_predefined_replies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_predefined_replies",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"message\": \"Updated text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tickets_predefined_replies",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_predefined_replies/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_predefined_replies",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tickets_predefined_replies",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_predefined_replies/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_predefined_replies",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tickets_priorities",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_priorities",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_priorities"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tickets_priorities by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_priorities/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_priorities",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tickets_priorities",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_priorities",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_priorities"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tickets_priorities",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_priorities/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_priorities",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tickets_priorities",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_priorities/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_priorities",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tickets_priorities",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_priorities/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_priorities",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tickets_status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_status",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_status"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tickets_status by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_status",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tickets_status",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_status",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_status"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"isdefault\": 0,\n    \"statuscolor\": \"sample_statuscolor\",\n    \"statusorder\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tickets_status",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_status",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"isdefault\": 1,\n    \"statuscolor\": \"updated_statuscolor\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tickets_status",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_status/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_status",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tickets_status",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tickets_status/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tickets_status",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List todos",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/todos",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "todos"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get todos by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/todos/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "todos",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create todos",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/todos",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "todos"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Sample description\",\n    \"staffid\": 0,\n    \"dateadded\": \"2026-05-16 12:54:24\",\n    \"finished\": 0,\n    \"datefinished\": \"2026-05-16 12:54:24\",\n    \"item_order\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update todos",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/todos/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "todos",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"description\": \"Updated content\",\n    \"staffid\": 1,\n    \"dateadded\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete todos",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/todos/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "todos",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema todos",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/todos/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "todos",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List tracked_mails",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tracked_mails",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tracked_mails"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get tracked_mails by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tracked_mails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tracked_mails",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create tracked_mails",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tracked_mails",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tracked_mails"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"uid\": \"sample_uid\",\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"date\": \"2026-05-16 12:54:24\",\n    \"email\": \"user@example.com\",\n    \"opened\": 0,\n    \"date_opened\": \"2026-05-16 12:54:24\",\n    \"subject\": \"Sample title\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update tracked_mails",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tracked_mails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tracked_mails",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"uid\": \"updated_uid\",\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete tracked_mails",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tracked_mails/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tracked_mails",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema tracked_mails",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/tracked_mails/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "tracked_mails",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List twocheckout_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/twocheckout_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "twocheckout_log"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get twocheckout_log by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/twocheckout_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "twocheckout_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create twocheckout_log",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/twocheckout_log",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "twocheckout_log"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"reference\": \"sample_reference\",\n    \"invoice_id\": 0,\n    \"amount\": \"sample_amount\",\n    \"attempt_reference\": \"sample_attempt_reference\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update twocheckout_log",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/twocheckout_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "twocheckout_log",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"reference\": \"updated_reference\",\n    \"invoice_id\": 1,\n    \"amount\": \"updated_amount\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete twocheckout_log",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/twocheckout_log/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "twocheckout_log",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema twocheckout_log",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/twocheckout_log/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "twocheckout_log",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List user_auto_login",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_auto_login",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_auto_login"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get user_auto_login by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_auto_login/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_auto_login",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create user_auto_login",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_auto_login",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_auto_login"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"key_id\": \"sample_key_id\",\n    \"user_id\": 0,\n    \"user_agent\": \"sample_user_agent\",\n    \"staff\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update user_auto_login",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_auto_login/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_auto_login",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"key_id\": \"updated_key_id\",\n    \"user_id\": 1,\n    \"user_agent\": \"updated_user_agent\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete user_auto_login",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_auto_login/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_auto_login",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema user_auto_login",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_auto_login/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_auto_login",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List user_meta",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_meta",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_meta"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get user_meta by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_meta/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_meta",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create user_meta",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_meta",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_meta"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staff_id\": 0,\n    \"client_id\": 0,\n    \"contact_id\": 0,\n    \"meta_key\": \"sample_meta_key\",\n    \"meta_value\": \"Sample text content\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update user_meta",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_meta/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_meta",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"staff_id\": 1,\n    \"client_id\": 1,\n    \"contact_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete user_meta",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_meta/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_meta",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema user_meta",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/user_meta/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "user_meta",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List vault",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/vault",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "vault"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get vault by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/vault/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "vault",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create vault",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/vault",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "vault"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"customer_id\": 0,\n    \"server_address\": \"sample_server_address\",\n    \"port\": 0,\n    \"username\": \"sample_username\",\n    \"password\": \"SecureP@ss123\",\n    \"description\": \"Sample description\",\n    \"creator\": 0,\n    \"creator_name\": \"sample_creator_name\",\n    \"visibility\": 0,\n    \"share_in_projects\": 0,\n    \"last_updated\": \"2026-05-16 12:54:24\",\n    \"last_updated_from\": \"sample_last_updated_from\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update vault",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/vault/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "vault",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"customer_id\": 1,\n    \"server_address\": \"updated_server_address\",\n    \"port\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete vault",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/vault/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "vault",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema vault",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/vault/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "vault",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List views_tracking",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/views_tracking",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "views_tracking"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get views_tracking by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/views_tracking/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "views_tracking",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create views_tracking",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/views_tracking",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "views_tracking"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 0,\n    \"rel_type\": \"sample_rel_type\",\n    \"date\": \"2026-05-16 12:54:24\",\n    \"view_ip\": \"sample_view_ip\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update views_tracking",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/views_tracking/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "views_tracking",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"rel_id\": 1,\n    \"rel_type\": \"updated_rel_type\",\n    \"date\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete views_tracking",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/views_tracking/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "views_tracking",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema views_tracking",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/views_tracking/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "views_tracking",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List web_to_lead",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/web_to_lead",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "web_to_lead"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get web_to_lead by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/web_to_lead/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "web_to_lead",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create web_to_lead",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/web_to_lead",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "web_to_lead"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"form_key\": \"sample_form_key\",\n    \"lead_source\": 0,\n    \"lead_status\": 0,\n    \"notify_lead_imported\": 0,\n    \"notify_type\": \"sample_notify_type\",\n    \"notify_ids\": \"Sample text content\",\n    \"responsible\": 0,\n    \"name\": \"Sample title\",\n    \"form_data\": \"Sample text content\",\n    \"recaptcha\": 0,\n    \"submit_btn_name\": \"sample_submit_btn_name\",\n    \"submit_btn_text_color\": \"sample_submit_btn_text_color\",\n    \"submit_btn_bg_color\": \"sample_submit_btn_bg_color\",\n    \"success_submit_msg\": \"Sample text content\",\n    \"submit_action\": 0,\n    \"lead_name_prefix\": \"sample_lead_name_prefix\",\n    \"submit_redirect_url\": \"https://example.com\",\n    \"language\": \"sample_language\",\n    \"allow_duplicate\": 0,\n    \"mark_public\": 0,\n    \"track_duplicate_field\": \"sample_track_duplicate_field\",\n    \"track_duplicate_field_and\": \"sample_track_duplicate_field_and\",\n    \"create_task_on_duplicate\": 0,\n    \"dateadded\": \"2026-05-16 12:54:24\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update web_to_lead",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/web_to_lead/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "web_to_lead",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"form_key\": \"updated_form_key\",\n    \"lead_source\": 1,\n    \"lead_status\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete web_to_lead",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/web_to_lead/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "web_to_lead",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema web_to_lead",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/web_to_lead/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "web_to_lead",
                                "schema"
                            ]
                        }
                    }
                },
                {
                    "name": "List milestones",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/milestones",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "milestones"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "sort",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "fields",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                },
                                {
                                    "key": "filter",
                                    "value": "",
                                    "disabled": true,
                                    "description": ""
                                }
                            ]
                        }
                    }
                },
                {
                    "name": "Get milestones by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/milestones/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "milestones",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Create milestones",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/milestones",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "milestones"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Sample title\",\n    \"description\": \"Sample description\",\n    \"description_visible_to_customer\": 0,\n    \"start_date\": \"2026-05-16 12:54:24\",\n    \"due_date\": \"2026-05-16 12:54:24\",\n    \"project_id\": 0,\n    \"color\": \"sample_color\",\n    \"milestone_order\": 0,\n    \"hide_from_customer\": 0\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Update milestones",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/milestones/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "milestones",
                                "1"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Updated title\",\n    \"description\": \"Updated content\",\n    \"description_visible_to_customer\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "Delete milestones",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/milestones/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "milestones",
                                "1"
                            ]
                        }
                    }
                },
                {
                    "name": "Schema milestones",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/milestones/schema",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "milestones",
                                "schema"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Reports",
            "item": []
        },
        {
            "name": "GraphQL",
            "item": [
                {
                    "name": "Ping",
                    "request": {
                        "method": "POST",
                        "url": {
                            "raw": "{{baseUrl}}/graphql",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "graphql"
                            ]
                        },
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "graphql",
                            "graphql": {
                                "query": "{\n  _ping\n}",
                                "variables": "{}"
                            }
                        }
                    }
                },
                {
                    "name": "Schema Introspection",
                    "request": {
                        "method": "POST",
                        "url": {
                            "raw": "{{baseUrl}}/graphql",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "graphql"
                            ]
                        },
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{api_token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "graphql",
                            "graphql": {
                                "query": "{\n  __schema {\n    queryType { name }\n    mutationType { name }\n    types {\n      name\n      kind\n      fields { name type { name } }\n    }\n  }\n}",
                                "variables": "{}"
                            }
                        }
                    }
                },
                {
                    "name": "Activity log",
                    "item": [
                        {
                            "name": "List Activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetActivity_logList($limit: Int, $offset: Int) {\n  activity_log(limit: $limit, offset: $offset) {\n    id\n    description\n    date\n    staffid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateActivity_log($input: Activity_logInput!) {\n  create_activity_log(input: $input) {\n    id\n    description\n    date\n    staffid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"description\": \"Sample description for testing.\",\n        \"date\": \"2026-04-01\",\n        \"staffid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateActivity_log($id: ID!, $input: Activity_logInput!) {\n  update_activity_log(id: $id, input: $input) {\n    id\n    description\n    date\n    staffid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"description\": \"Sample description for testing.\",\n        \"date\": \"2026-04-01\",\n        \"staffid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteActivity_log($id: ID!) {\n  delete_activity_log(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Announcements",
                    "item": [
                        {
                            "name": "List Announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetAnnouncementsList($limit: Int, $offset: Int) {\n  announcements(limit: $limit, offset: $offset) {\n    announcementid\n    name\n    message\n    showtousers\n    showtostaff\n    showname\n    dateadded\n    userid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateAnnouncements($input: AnnouncementsInput!) {\n  create_announcements(input: $input) {\n    announcementid\n    name\n    message\n    showtousers\n    showtostaff\n    showname\n    dateadded\n    userid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"announcementid\": 0,\n        \"name\": \"Sample name\",\n        \"message\": \"Sample message\",\n        \"showtousers\": 0,\n        \"showtostaff\": 0,\n        \"showname\": 0,\n        \"dateadded\": \"2026-04-01\",\n        \"userid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateAnnouncements($id: ID!, $input: AnnouncementsInput!) {\n  update_announcements(id: $id, input: $input) {\n    announcementid\n    name\n    message\n    showtousers\n    showtostaff\n    showname\n    dateadded\n    userid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"announcementid\": 0,\n        \"name\": \"Sample name\",\n        \"message\": \"Sample message\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteAnnouncements($id: ID!) {\n  delete_announcements(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Consent purposes",
                    "item": [
                        {
                            "name": "List Consent purposes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetConsent_purposesList($limit: Int, $offset: Int) {\n  consent_purposes(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    date_created\n    last_updated\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Consent purposes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateConsent_purposes($input: Consent_purposesInput!) {\n  create_consent_purposes(input: $input) {\n    id\n    name\n    description\n    date_created\n    last_updated\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"date_created\": \"2026-04-01\",\n        \"last_updated\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Consent purposes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateConsent_purposes($id: ID!, $input: Consent_purposesInput!) {\n  update_consent_purposes(id: $id, input: $input) {\n    id\n    name\n    description\n    date_created\n    last_updated\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"date_created\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Consent purposes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteConsent_purposes($id: ID!) {\n  delete_consent_purposes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Consents",
                    "item": [
                        {
                            "name": "List Consents",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetConsentsList($limit: Int, $offset: Int) {\n  consents(limit: $limit, offset: $offset) {\n    id\n    action\n    date\n    ip\n    contact_id\n    lead_id\n    description\n    opt_in_purpose_description\n    purpose_id\n    staff_name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Consents",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateConsents($input: ConsentsInput!) {\n  create_consents(input: $input) {\n    id\n    action\n    date\n    ip\n    contact_id\n    lead_id\n    description\n    opt_in_purpose_description\n    purpose_id\n    staff_name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"action\": \"Sample action\",\n        \"date\": \"2026-04-01\",\n        \"ip\": \"Sample ip\",\n        \"contact_id\": 0,\n        \"lead_id\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"opt_in_purpose_description\": \"Sample opt_in_purpose_description\",\n        \"purpose_id\": 0,\n        \"staff_name\": \"Sample staff_name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Consents",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateConsents($id: ID!, $input: ConsentsInput!) {\n  update_consents(id: $id, input: $input) {\n    id\n    action\n    date\n    ip\n    contact_id\n    lead_id\n    description\n    opt_in_purpose_description\n    purpose_id\n    staff_name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"action\": \"Sample action\",\n        \"date\": \"2026-04-01\",\n        \"ip\": \"Sample ip\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Consents",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteConsents($id: ID!) {\n  delete_consents(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Contact permissions",
                    "item": [
                        {
                            "name": "List Contact permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetContact_permissionsList($limit: Int, $offset: Int) {\n  contact_permissions(limit: $limit, offset: $offset) {\n    id\n    permission_id\n    userid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Contact permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateContact_permissions($input: Contact_permissionsInput!) {\n  create_contact_permissions(input: $input) {\n    id\n    permission_id\n    userid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"permission_id\": 0,\n        \"userid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Contact permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateContact_permissions($id: ID!, $input: Contact_permissionsInput!) {\n  update_contact_permissions(id: $id, input: $input) {\n    id\n    permission_id\n    userid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"permission_id\": 0,\n        \"userid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Contact permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteContact_permissions($id: ID!) {\n  delete_contact_permissions(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Contacts",
                    "item": [
                        {
                            "name": "List Contacts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetContactsList($limit: Int, $offset: Int) {\n  contacts(limit: $limit, offset: $offset) {\n    id\n    userid\n    is_primary\n    firstname\n    lastname\n    email\n    phonenumber\n    title\n    datecreated\n    new_pass_key\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Contacts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateContacts($input: ContactsInput!) {\n  create_contacts(input: $input) {\n    id\n    userid\n    is_primary\n    firstname\n    lastname\n    email\n    phonenumber\n    title\n    datecreated\n    new_pass_key\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"userid\": 1,\n        \"is_primary\": 0,\n        \"firstname\": \"Sample firstname\",\n        \"lastname\": \"Sample lastname\",\n        \"email\": \"demo@example.com\",\n        \"phonenumber\": \"+1234567890\",\n        \"title\": \"Sample title\",\n        \"new_pass_key\": \"Sample new_pass_key\",\n        \"new_pass_key_requested\": \"Sample new_pass_key_requested\",\n        \"email_verified_at\": \"demo@example.com\",\n        \"email_verification_key\": \"demo@example.com\",\n        \"email_verification_sent_at\": \"demo@example.com\",\n        \"last_password_change\": \"Sample last_password_change\",\n        \"active\": 0,\n        \"profile_image\": \"Sample profile_image\",\n        \"direction\": \"Sample direction\",\n        \"invoice_emails\": 0,\n        \"estimate_emails\": 0,\n        \"credit_note_emails\": 0,\n        \"contract_emails\": 0,\n        \"task_emails\": 0,\n        \"project_emails\": 0,\n        \"ticket_emails\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Contacts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateContacts($id: ID!, $input: ContactsInput!) {\n  update_contacts(id: $id, input: $input) {\n    id\n    userid\n    is_primary\n    firstname\n    lastname\n    email\n    phonenumber\n    title\n    datecreated\n    new_pass_key\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"userid\": 1,\n        \"is_primary\": 0,\n        \"firstname\": \"Sample firstname\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Contacts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteContacts($id: ID!) {\n  delete_contacts(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Contract comments",
                    "item": [
                        {
                            "name": "List Contract comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetContract_commentsList($limit: Int, $offset: Int) {\n  contract_comments(limit: $limit, offset: $offset) {\n    id\n    content\n    contract_id\n    staffid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Contract comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateContract_comments($input: Contract_commentsInput!) {\n  create_contract_comments(input: $input) {\n    id\n    content\n    contract_id\n    staffid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"contract_id\": 0,\n        \"staffid\": 1,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Contract comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateContract_comments($id: ID!, $input: Contract_commentsInput!) {\n  update_contract_comments(id: $id, input: $input) {\n    id\n    content\n    contract_id\n    staffid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"contract_id\": 0,\n        \"staffid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Contract comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteContract_comments($id: ID!) {\n  delete_contract_comments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Contract renewals",
                    "item": [
                        {
                            "name": "List Contract renewals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetContract_renewalsList($limit: Int, $offset: Int) {\n  contract_renewals(limit: $limit, offset: $offset) {\n    id\n    contractid\n    old_start_date\n    new_start_date\n    old_end_date\n    new_end_date\n    old_value\n    new_value\n    date_renewed\n    renewed_by\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Contract renewals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateContract_renewals($input: Contract_renewalsInput!) {\n  create_contract_renewals(input: $input) {\n    id\n    contractid\n    old_start_date\n    new_start_date\n    old_end_date\n    new_end_date\n    old_value\n    new_value\n    date_renewed\n    renewed_by\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"contractid\": 0,\n        \"old_start_date\": \"2026-04-01\",\n        \"new_start_date\": \"2026-04-01\",\n        \"old_end_date\": \"2026-04-01\",\n        \"new_end_date\": \"2026-04-01\",\n        \"old_value\": \"0\",\n        \"new_value\": \"0\",\n        \"date_renewed\": \"2026-04-01\",\n        \"renewed_by\": \"Sample renewed_by\",\n        \"renewed_by_staff_id\": 0,\n        \"is_on_old_expiry_notified\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Contract renewals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateContract_renewals($id: ID!, $input: Contract_renewalsInput!) {\n  update_contract_renewals(id: $id, input: $input) {\n    id\n    contractid\n    old_start_date\n    new_start_date\n    old_end_date\n    new_end_date\n    old_value\n    new_value\n    date_renewed\n    renewed_by\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"contractid\": 0,\n        \"old_start_date\": \"2026-04-01\",\n        \"new_start_date\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Contract renewals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteContract_renewals($id: ID!) {\n  delete_contract_renewals(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Contracts",
                    "item": [
                        {
                            "name": "List Contracts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetContractsList($limit: Int, $offset: Int) {\n  contracts(limit: $limit, offset: $offset) {\n    id\n    content\n    description\n    subject\n    client\n    datestart\n    dateend\n    contract_type\n    project_id\n    addedfrom\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Contracts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateContracts($input: ContractsInput!) {\n  create_contracts(input: $input) {\n    id\n    content\n    description\n    subject\n    client\n    datestart\n    dateend\n    contract_type\n    project_id\n    addedfrom\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"description\": \"Sample description for testing.\",\n        \"subject\": \"Sample subject\",\n        \"client\": 0,\n        \"datestart\": \"2026-04-01\",\n        \"dateend\": \"2026-04-01\",\n        \"contract_type\": 0,\n        \"project_id\": 0,\n        \"dateadded\": \"2026-04-01\",\n        \"isexpirynotified\": 0,\n        \"contract_value\": \"0\",\n        \"trash\": 0,\n        \"not_visible_to_client\": 0,\n        \"signed\": 0,\n        \"signature\": \"Sample signature\",\n        \"marked_as_signed\": 0,\n        \"acceptance_firstname\": \"Sample acceptance_firstname\",\n        \"acceptance_lastname\": \"Sample acceptance_lastname\",\n        \"acceptance_email\": \"demo@example.com\",\n        \"acceptance_date\": \"2026-04-01\",\n        \"acceptance_ip\": \"Sample acceptance_ip\",\n        \"short_link\": \"Sample short_link\",\n        \"last_sent_at\": \"Sample last_sent_at\",\n        \"contacts_sent_to\": \"Sample contacts_sent_to\",\n        \"last_sign_reminder_at\": \"Sample last_sign_reminder_at\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Contracts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateContracts($id: ID!, $input: ContractsInput!) {\n  update_contracts(id: $id, input: $input) {\n    id\n    content\n    description\n    subject\n    client\n    datestart\n    dateend\n    contract_type\n    project_id\n    addedfrom\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"description\": \"Sample description for testing.\",\n        \"subject\": \"Sample subject\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Contracts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteContracts($id: ID!) {\n  delete_contracts(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Contracts types",
                    "item": [
                        {
                            "name": "List Contracts types",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetContracts_typesList($limit: Int, $offset: Int) {\n  contracts_types(limit: $limit, offset: $offset) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Contracts types",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateContracts_types($input: Contracts_typesInput!) {\n  create_contracts_types(input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Contracts types",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateContracts_types($id: ID!, $input: Contracts_typesInput!) {\n  update_contracts_types(id: $id, input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Contracts types",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteContracts_types($id: ID!) {\n  delete_contracts_types(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Countries",
                    "item": [
                        {
                            "name": "List Countries",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCountriesList($limit: Int, $offset: Int) {\n  countries(limit: $limit, offset: $offset) {\n    country_id\n    iso2\n    short_name\n    long_name\n    iso3\n    numcode\n    un_member\n    calling_code\n    cctld\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Countries",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCountries($input: CountriesInput!) {\n  create_countries(input: $input) {\n    country_id\n    iso2\n    short_name\n    long_name\n    iso3\n    numcode\n    un_member\n    calling_code\n    cctld\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"country_id\": 0,\n        \"iso2\": \"Sample iso2\",\n        \"short_name\": \"Sample short_name\",\n        \"long_name\": \"Sample long_name\",\n        \"iso3\": \"Sample iso3\",\n        \"numcode\": \"Sample numcode\",\n        \"un_member\": \"Sample un_member\",\n        \"calling_code\": \"Sample calling_code\",\n        \"cctld\": \"Sample cctld\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Countries",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCountries($id: ID!, $input: CountriesInput!) {\n  update_countries(id: $id, input: $input) {\n    country_id\n    iso2\n    short_name\n    long_name\n    iso3\n    numcode\n    un_member\n    calling_code\n    cctld\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"country_id\": 0,\n        \"iso2\": \"Sample iso2\",\n        \"short_name\": \"Sample short_name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Countries",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCountries($id: ID!) {\n  delete_countries(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Creditnotes",
                    "item": [
                        {
                            "name": "List Creditnotes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCreditnotesList($limit: Int, $offset: Int) {\n  creditnotes(limit: $limit, offset: $offset) {\n    id\n    clientid\n    deleted_customer_name\n    number\n    prefix\n    number_format\n    formatted_number\n    datecreated\n    date\n    adminnote\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Creditnotes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCreditnotes($input: CreditnotesInput!) {\n  create_creditnotes(input: $input) {\n    id\n    clientid\n    deleted_customer_name\n    number\n    prefix\n    number_format\n    formatted_number\n    datecreated\n    date\n    adminnote\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"clientid\": 1,\n        \"deleted_customer_name\": \"Sample deleted_customer_name\",\n        \"number\": 0,\n        \"prefix\": \"Sample prefix\",\n        \"number_format\": 0,\n        \"formatted_number\": \"Sample formatted_number\",\n        \"date\": \"2026-04-01\",\n        \"adminnote\": \"Sample adminnote\",\n        \"terms\": \"Sample terms\",\n        \"clientnote\": \"Sample clientnote\",\n        \"currency\": 0,\n        \"subtotal\": \"0\",\n        \"total_tax\": \"0\",\n        \"total\": \"0\",\n        \"adjustment\": \"0\",\n        \"status\": 0,\n        \"project_id\": 0,\n        \"discount_percent\": \"0\",\n        \"discount_total\": \"0\",\n        \"discount_type\": \"Sample discount_type\",\n        \"billing_street\": \"Sample billing_street\",\n        \"billing_city\": \"Sample billing_city\",\n        \"billing_state\": \"Sample billing_state\",\n        \"billing_zip\": \"Sample billing_zip\",\n        \"billing_country\": 0,\n        \"shipping_street\": \"Sample shipping_street\",\n        \"shipping_city\": \"Sample shipping_city\",\n        \"shipping_state\": \"Sample shipping_state\",\n        \"shipping_zip\": \"Sample shipping_zip\",\n        \"shipping_country\": 0,\n        \"include_shipping\": 0,\n        \"show_shipping_on_credit_note\": 0,\n        \"show_quantity_as\": 0,\n        \"reference_no\": \"Sample reference_no\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Creditnotes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCreditnotes($id: ID!, $input: CreditnotesInput!) {\n  update_creditnotes(id: $id, input: $input) {\n    id\n    clientid\n    deleted_customer_name\n    number\n    prefix\n    number_format\n    formatted_number\n    datecreated\n    date\n    adminnote\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"clientid\": 1,\n        \"deleted_customer_name\": \"Sample deleted_customer_name\",\n        \"number\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Creditnotes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCreditnotes($id: ID!) {\n  delete_creditnotes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Creditnote refunds",
                    "item": [
                        {
                            "name": "List Creditnote refunds",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCreditnote_refundsList($limit: Int, $offset: Int) {\n  creditnote_refunds(limit: $limit, offset: $offset) {\n    id\n    credit_note_id\n    staff_id\n    refunded_on\n    payment_mode\n    note\n    amount\n    created_at\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Creditnote refunds",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCreditnote_refunds($input: Creditnote_refundsInput!) {\n  create_creditnote_refunds(input: $input) {\n    id\n    credit_note_id\n    staff_id\n    refunded_on\n    payment_mode\n    note\n    amount\n    created_at\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"credit_note_id\": 0,\n        \"staff_id\": 1,\n        \"refunded_on\": \"Sample refunded_on\",\n        \"payment_mode\": \"Sample payment_mode\",\n        \"note\": \"Sample note\",\n        \"amount\": \"0\",\n        \"created_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Creditnote refunds",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCreditnote_refunds($id: ID!, $input: Creditnote_refundsInput!) {\n  update_creditnote_refunds(id: $id, input: $input) {\n    id\n    credit_note_id\n    staff_id\n    refunded_on\n    payment_mode\n    note\n    amount\n    created_at\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"credit_note_id\": 0,\n        \"staff_id\": 1,\n        \"refunded_on\": \"Sample refunded_on\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Creditnote refunds",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCreditnote_refunds($id: ID!) {\n  delete_creditnote_refunds(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Credits",
                    "item": [
                        {
                            "name": "List Credits",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCreditsList($limit: Int, $offset: Int) {\n  credits(limit: $limit, offset: $offset) {\n    id\n    invoice_id\n    credit_id\n    staff_id\n    date\n    date_applied\n    amount\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Credits",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCredits($input: CreditsInput!) {\n  create_credits(input: $input) {\n    id\n    invoice_id\n    credit_id\n    staff_id\n    date\n    date_applied\n    amount\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"invoice_id\": 0,\n        \"credit_id\": 0,\n        \"staff_id\": 1,\n        \"date\": \"2026-04-01\",\n        \"date_applied\": \"2026-04-01\",\n        \"amount\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Credits",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCredits($id: ID!, $input: CreditsInput!) {\n  update_credits(id: $id, input: $input) {\n    id\n    invoice_id\n    credit_id\n    staff_id\n    date\n    date_applied\n    amount\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"invoice_id\": 0,\n        \"credit_id\": 0,\n        \"staff_id\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Credits",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCredits($id: ID!) {\n  delete_credits(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Currencies",
                    "item": [
                        {
                            "name": "List Currencies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCurrenciesList($limit: Int, $offset: Int) {\n  currencies(limit: $limit, offset: $offset) {\n    id\n    symbol\n    name\n    decimal_separator\n    thousand_separator\n    placement\n    isdefault\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Currencies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCurrencies($input: CurrenciesInput!) {\n  create_currencies(input: $input) {\n    id\n    symbol\n    name\n    decimal_separator\n    thousand_separator\n    placement\n    isdefault\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"symbol\": \"Sample symbol\",\n        \"name\": \"Sample name\",\n        \"decimal_separator\": \"Sample decimal_separator\",\n        \"thousand_separator\": \"Sample thousand_separator\",\n        \"placement\": \"Sample placement\",\n        \"isdefault\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Currencies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCurrencies($id: ID!, $input: CurrenciesInput!) {\n  update_currencies(id: $id, input: $input) {\n    id\n    symbol\n    name\n    decimal_separator\n    thousand_separator\n    placement\n    isdefault\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"symbol\": \"Sample symbol\",\n        \"name\": \"Sample name\",\n        \"decimal_separator\": \"Sample decimal_separator\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Currencies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCurrencies($id: ID!) {\n  delete_currencies(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Customfieldsvalues",
                    "item": [
                        {
                            "name": "List Customfieldsvalues",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCustomfieldsvaluesList($limit: Int, $offset: Int) {\n  customfieldsvalues(limit: $limit, offset: $offset) {\n    id\n    relid\n    fieldid\n    fieldto\n    value\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Customfieldsvalues",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCustomfieldsvalues($input: CustomfieldsvaluesInput!) {\n  create_customfieldsvalues(input: $input) {\n    id\n    relid\n    fieldid\n    fieldto\n    value\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"relid\": 0,\n        \"fieldid\": 0,\n        \"fieldto\": \"Sample fieldto\",\n        \"value\": \"Sample value\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Customfieldsvalues",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCustomfieldsvalues($id: ID!, $input: CustomfieldsvaluesInput!) {\n  update_customfieldsvalues(id: $id, input: $input) {\n    id\n    relid\n    fieldid\n    fieldto\n    value\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"relid\": 0,\n        \"fieldid\": 0,\n        \"fieldto\": \"Sample fieldto\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Customfieldsvalues",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCustomfieldsvalues($id: ID!) {\n  delete_customfieldsvalues(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Customfields",
                    "item": [
                        {
                            "name": "List Customfields",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCustomfieldsList($limit: Int, $offset: Int) {\n  customfields(limit: $limit, offset: $offset) {\n    id\n    fieldto\n    name\n    slug\n    required\n    type\n    options\n    display_inline\n    field_order\n    active\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Customfields",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCustomfields($input: CustomfieldsInput!) {\n  create_customfields(input: $input) {\n    id\n    fieldto\n    name\n    slug\n    required\n    type\n    options\n    display_inline\n    field_order\n    active\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"fieldto\": \"Sample fieldto\",\n        \"name\": \"Sample name\",\n        \"slug\": \"Sample slug\",\n        \"required\": 0,\n        \"type\": \"Sample type\",\n        \"options\": \"Sample options\",\n        \"display_inline\": 0,\n        \"field_order\": 0,\n        \"active\": 0,\n        \"show_on_pdf\": 0,\n        \"show_on_ticket_form\": 0,\n        \"only_admin\": 0,\n        \"show_on_table\": 0,\n        \"show_on_client_portal\": 0,\n        \"disalow_client_to_edit\": 0,\n        \"bs_column\": 0,\n        \"default_value\": \"Sample default_value\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Customfields",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCustomfields($id: ID!, $input: CustomfieldsInput!) {\n  update_customfields(id: $id, input: $input) {\n    id\n    fieldto\n    name\n    slug\n    required\n    type\n    options\n    display_inline\n    field_order\n    active\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"fieldto\": \"Sample fieldto\",\n        \"name\": \"Sample name\",\n        \"slug\": \"Sample slug\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Customfields",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCustomfields($id: ID!) {\n  delete_customfields(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Customer admins",
                    "item": [
                        {
                            "name": "List Customer admins",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCustomer_adminsList($limit: Int, $offset: Int) {\n  customer_admins(limit: $limit, offset: $offset) {\n    staff_id\n    customer_id\n    date_assigned\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Customer admins",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCustomer_admins($input: Customer_adminsInput!) {\n  create_customer_admins(input: $input) {\n    staff_id\n    customer_id\n    date_assigned\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"staff_id\": 1,\n        \"customer_id\": 0,\n        \"date_assigned\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Customer admins",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCustomer_admins($id: ID!, $input: Customer_adminsInput!) {\n  update_customer_admins(id: $id, input: $input) {\n    staff_id\n    customer_id\n    date_assigned\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"staff_id\": 1,\n        \"customer_id\": 0,\n        \"date_assigned\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Customer admins",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCustomer_admins($id: ID!) {\n  delete_customer_admins(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Clients",
                    "item": [
                        {
                            "name": "List Clients",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetClientsList($limit: Int, $offset: Int) {\n  clients(limit: $limit, offset: $offset) {\n    userid\n    company\n    vat\n    phonenumber\n    country\n    city\n    zip\n    state\n    address\n    website\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Clients",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateClients($input: ClientsInput!) {\n  create_clients(input: $input) {\n    userid\n    company\n    vat\n    phonenumber\n    country\n    city\n    zip\n    state\n    address\n    website\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"userid\": 1,\n        \"company\": \"Sample company\",\n        \"vat\": \"Sample vat\",\n        \"phonenumber\": \"+1234567890\",\n        \"country\": 0,\n        \"city\": \"Sample city\",\n        \"zip\": \"Sample zip\",\n        \"state\": \"Sample state\",\n        \"address\": \"Sample address\",\n        \"website\": \"Sample website\",\n        \"active\": 0,\n        \"leadid\": 0,\n        \"billing_street\": \"Sample billing_street\",\n        \"billing_city\": \"Sample billing_city\",\n        \"billing_state\": \"Sample billing_state\",\n        \"billing_zip\": \"Sample billing_zip\",\n        \"billing_country\": 0,\n        \"shipping_street\": \"Sample shipping_street\",\n        \"shipping_city\": \"Sample shipping_city\",\n        \"shipping_state\": \"Sample shipping_state\",\n        \"shipping_zip\": \"Sample shipping_zip\",\n        \"shipping_country\": 0,\n        \"longitude\": \"Sample longitude\",\n        \"latitude\": \"Sample latitude\",\n        \"default_language\": \"Sample default_language\",\n        \"default_currency\": 0,\n        \"show_primary_contact\": 0,\n        \"stripe_id\": \"Sample stripe_id\",\n        \"registration_confirmed\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Clients",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateClients($id: ID!, $input: ClientsInput!) {\n  update_clients(id: $id, input: $input) {\n    userid\n    company\n    vat\n    phonenumber\n    country\n    city\n    zip\n    state\n    address\n    website\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"userid\": 1,\n        \"company\": \"Sample company\",\n        \"vat\": \"Sample vat\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Clients",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteClients($id: ID!) {\n  delete_clients(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Customers groups",
                    "item": [
                        {
                            "name": "List Customers groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCustomers_groupsList($limit: Int, $offset: Int) {\n  customers_groups(limit: $limit, offset: $offset) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Customers groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCustomers_groups($input: Customers_groupsInput!) {\n  create_customers_groups(input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Customers groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCustomers_groups($id: ID!, $input: Customers_groupsInput!) {\n  update_customers_groups(id: $id, input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Customers groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCustomers_groups($id: ID!) {\n  delete_customers_groups(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Data builder api logs",
                    "item": [
                        {
                            "name": "List Data builder api logs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetData_builder_api_logsList($limit: Int, $offset: Int) {\n  data_builder_api_logs(limit: $limit, offset: $offset) {\n    id\n    token_id\n    endpoint\n    method\n    query_params\n    status_code\n    response_time_ms\n    ip_address\n    user_agent\n    error_detail\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Data builder api logs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateData_builder_api_logs($input: Data_builder_api_logsInput!) {\n  create_data_builder_api_logs(input: $input) {\n    id\n    token_id\n    endpoint\n    method\n    query_params\n    status_code\n    response_time_ms\n    ip_address\n    user_agent\n    error_detail\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"token_id\": 0,\n        \"endpoint\": \"Sample endpoint\",\n        \"method\": \"Sample method\",\n        \"query_params\": \"Sample query_params\",\n        \"status_code\": 0,\n        \"response_time_ms\": 0,\n        \"ip_address\": \"Sample ip_address\",\n        \"user_agent\": \"Sample user_agent\",\n        \"error_detail\": \"Sample error_detail\",\n        \"created_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Data builder api logs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateData_builder_api_logs($id: ID!, $input: Data_builder_api_logsInput!) {\n  update_data_builder_api_logs(id: $id, input: $input) {\n    id\n    token_id\n    endpoint\n    method\n    query_params\n    status_code\n    response_time_ms\n    ip_address\n    user_agent\n    error_detail\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"token_id\": 0,\n        \"endpoint\": \"Sample endpoint\",\n        \"method\": \"Sample method\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Data builder api logs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteData_builder_api_logs($id: ID!) {\n  delete_data_builder_api_logs(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Data builder api rate",
                    "item": [
                        {
                            "name": "List Data builder api rate",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetData_builder_api_rateList($limit: Int, $offset: Int) {\n  data_builder_api_rate(limit: $limit, offset: $offset) {\n    id\n    identifier\n    endpoint_group\n    window_start\n    request_count\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Data builder api rate",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateData_builder_api_rate($input: Data_builder_api_rateInput!) {\n  create_data_builder_api_rate(input: $input) {\n    id\n    identifier\n    endpoint_group\n    window_start\n    request_count\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"identifier\": \"Sample identifier\",\n        \"endpoint_group\": \"Sample endpoint_group\",\n        \"window_start\": 0,\n        \"request_count\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Data builder api rate",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateData_builder_api_rate($id: ID!, $input: Data_builder_api_rateInput!) {\n  update_data_builder_api_rate(id: $id, input: $input) {\n    id\n    identifier\n    endpoint_group\n    window_start\n    request_count\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"identifier\": \"Sample identifier\",\n        \"endpoint_group\": \"Sample endpoint_group\",\n        \"window_start\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Data builder api rate",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteData_builder_api_rate($id: ID!) {\n  delete_data_builder_api_rate(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Demobuilder backups",
                    "item": [
                        {
                            "name": "List Demobuilder backups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetDemobuilder_backupsList($limit: Int, $offset: Int) {\n  demobuilder_backups(limit: $limit, offset: $offset) {\n    id\n    name\n    filename\n    size\n    database_size\n    directories_info\n    excluded_tables_info\n    notes\n    created_by\n    created_at\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Demobuilder backups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateDemobuilder_backups($input: Demobuilder_backupsInput!) {\n  create_demobuilder_backups(input: $input) {\n    id\n    name\n    filename\n    size\n    database_size\n    directories_info\n    excluded_tables_info\n    notes\n    created_by\n    created_at\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"filename\": \"Sample filename\",\n        \"size\": 0,\n        \"database_size\": 0,\n        \"directories_info\": \"Sample directories_info\",\n        \"excluded_tables_info\": \"Sample excluded_tables_info\",\n        \"notes\": \"Sample notes\",\n        \"created_by\": \"2026-04-01\",\n        \"created_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Demobuilder backups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateDemobuilder_backups($id: ID!, $input: Demobuilder_backupsInput!) {\n  update_demobuilder_backups(id: $id, input: $input) {\n    id\n    name\n    filename\n    size\n    database_size\n    directories_info\n    excluded_tables_info\n    notes\n    created_by\n    created_at\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"filename\": \"Sample filename\",\n        \"size\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Demobuilder backups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteDemobuilder_backups($id: ID!) {\n  delete_demobuilder_backups(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Demobuilder data configs",
                    "item": [
                        {
                            "name": "List Demobuilder data configs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetDemobuilder_data_configsList($limit: Int, $offset: Int) {\n  demobuilder_data_configs(limit: $limit, offset: $offset) {\n    id\n    entity_type\n    config_data\n    is_active\n    created_by\n    updated_by\n    created_at\n    updated_at\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Demobuilder data configs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateDemobuilder_data_configs($input: Demobuilder_data_configsInput!) {\n  create_demobuilder_data_configs(input: $input) {\n    id\n    entity_type\n    config_data\n    is_active\n    created_by\n    updated_by\n    created_at\n    updated_at\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"entity_type\": \"Sample entity_type\",\n        \"config_data\": \"Sample config_data\",\n        \"is_active\": 0,\n        \"created_by\": \"2026-04-01\",\n        \"updated_by\": \"2026-04-01\",\n        \"created_at\": \"2026-04-01\",\n        \"updated_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Demobuilder data configs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateDemobuilder_data_configs($id: ID!, $input: Demobuilder_data_configsInput!) {\n  update_demobuilder_data_configs(id: $id, input: $input) {\n    id\n    entity_type\n    config_data\n    is_active\n    created_by\n    updated_by\n    created_at\n    updated_at\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"entity_type\": \"Sample entity_type\",\n        \"config_data\": \"Sample config_data\",\n        \"is_active\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Demobuilder data configs",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteDemobuilder_data_configs($id: ID!) {\n  delete_demobuilder_data_configs(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Demobuilder demo accounts",
                    "item": [
                        {
                            "name": "List Demobuilder demo accounts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetDemobuilder_demo_accountsList($limit: Int, $offset: Int) {\n  demobuilder_demo_accounts(limit: $limit, offset: $offset) {\n    id\n    user_id\n    user_type\n    role_name\n    role\n    username\n    message\n    login\n    redirect_url\n    login_url\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Demobuilder demo accounts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateDemobuilder_demo_accounts($input: Demobuilder_demo_accountsInput!) {\n  create_demobuilder_demo_accounts(input: $input) {\n    id\n    user_id\n    user_type\n    role_name\n    role\n    username\n    message\n    login\n    redirect_url\n    login_url\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"user_id\": 1,\n        \"user_type\": \"Sample user_type\",\n        \"role_name\": \"Sample role_name\",\n        \"role\": \"Sample role\",\n        \"username\": \"Sample username\",\n        \"message\": \"Sample message\",\n        \"login\": \"Sample login\",\n        \"redirect_url\": \"Sample redirect_url\",\n        \"login_url\": \"Sample login_url\",\n        \"sort_order\": 0,\n        \"is_active\": 0,\n        \"created_at\": \"2026-04-01\",\n        \"updated_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Demobuilder demo accounts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateDemobuilder_demo_accounts($id: ID!, $input: Demobuilder_demo_accountsInput!) {\n  update_demobuilder_demo_accounts(id: $id, input: $input) {\n    id\n    user_id\n    user_type\n    role_name\n    role\n    username\n    message\n    login\n    redirect_url\n    login_url\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"user_id\": 1,\n        \"user_type\": \"Sample user_type\",\n        \"role_name\": \"Sample role_name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Demobuilder demo accounts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteDemobuilder_demo_accounts($id: ID!) {\n  delete_demobuilder_demo_accounts(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Departments",
                    "item": [
                        {
                            "name": "List Departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetDepartmentsList($limit: Int, $offset: Int) {\n  departments(limit: $limit, offset: $offset) {\n    departmentid\n    name\n    imap_username\n    email\n    email_from_header\n    host\n    encryption\n    folder\n    delete_after_import\n    calendar_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateDepartments($input: DepartmentsInput!) {\n  create_departments(input: $input) {\n    departmentid\n    name\n    imap_username\n    email\n    email_from_header\n    host\n    encryption\n    folder\n    delete_after_import\n    calendar_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"departmentid\": 0,\n        \"name\": \"Sample name\",\n        \"imap_username\": \"Sample imap_username\",\n        \"email\": \"demo@example.com\",\n        \"email_from_header\": 0,\n        \"host\": \"Sample host\",\n        \"encryption\": \"Sample encryption\",\n        \"folder\": \"Sample folder\",\n        \"delete_after_import\": 0,\n        \"calendar_id\": \"Sample calendar_id\",\n        \"hidefromclient\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateDepartments($id: ID!, $input: DepartmentsInput!) {\n  update_departments(id: $id, input: $input) {\n    departmentid\n    name\n    imap_username\n    email\n    email_from_header\n    host\n    encryption\n    folder\n    delete_after_import\n    calendar_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"departmentid\": 0,\n        \"name\": \"Sample name\",\n        \"imap_username\": \"Sample imap_username\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteDepartments($id: ID!) {\n  delete_departments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Dismissed announcements",
                    "item": [
                        {
                            "name": "List Dismissed announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetDismissed_announcementsList($limit: Int, $offset: Int) {\n  dismissed_announcements(limit: $limit, offset: $offset) {\n    dismissedannouncementid\n    announcementid\n    staff\n    userid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Dismissed announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateDismissed_announcements($input: Dismissed_announcementsInput!) {\n  create_dismissed_announcements(input: $input) {\n    dismissedannouncementid\n    announcementid\n    staff\n    userid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"dismissedannouncementid\": 0,\n        \"announcementid\": 0,\n        \"staff\": 0,\n        \"userid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Dismissed announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateDismissed_announcements($id: ID!, $input: Dismissed_announcementsInput!) {\n  update_dismissed_announcements(id: $id, input: $input) {\n    dismissedannouncementid\n    announcementid\n    staff\n    userid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"dismissedannouncementid\": 0,\n        \"announcementid\": 0,\n        \"staff\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Dismissed announcements",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteDismissed_announcements($id: ID!) {\n  delete_dismissed_announcements(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Emailtemplates",
                    "item": [
                        {
                            "name": "List Emailtemplates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetEmailtemplatesList($limit: Int, $offset: Int) {\n  emailtemplates(limit: $limit, offset: $offset) {\n    emailtemplateid\n    type\n    slug\n    language\n    name\n    subject\n    message\n    fromname\n    fromemail\n    plaintext\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Emailtemplates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateEmailtemplates($input: EmailtemplatesInput!) {\n  create_emailtemplates(input: $input) {\n    emailtemplateid\n    type\n    slug\n    language\n    name\n    subject\n    message\n    fromname\n    fromemail\n    plaintext\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"emailtemplateid\": 0,\n        \"type\": \"Sample type\",\n        \"slug\": \"Sample slug\",\n        \"language\": \"Sample language\",\n        \"name\": \"Sample name\",\n        \"subject\": \"Sample subject\",\n        \"message\": \"Sample message\",\n        \"fromname\": \"Sample fromname\",\n        \"fromemail\": \"demo@example.com\",\n        \"plaintext\": 0,\n        \"active\": 0,\n        \"order\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Emailtemplates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateEmailtemplates($id: ID!, $input: EmailtemplatesInput!) {\n  update_emailtemplates(id: $id, input: $input) {\n    emailtemplateid\n    type\n    slug\n    language\n    name\n    subject\n    message\n    fromname\n    fromemail\n    plaintext\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"emailtemplateid\": 0,\n        \"type\": \"Sample type\",\n        \"slug\": \"Sample slug\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Emailtemplates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteEmailtemplates($id: ID!) {\n  delete_emailtemplates(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Estimate request forms",
                    "item": [
                        {
                            "name": "List Estimate request forms",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetEstimate_request_formsList($limit: Int, $offset: Int) {\n  estimate_request_forms(limit: $limit, offset: $offset) {\n    id\n    form_key\n    type\n    name\n    form_data\n    recaptcha\n    status\n    submit_btn_name\n    submit_btn_bg_color\n    submit_btn_text_color\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Estimate request forms",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateEstimate_request_forms($input: Estimate_request_formsInput!) {\n  create_estimate_request_forms(input: $input) {\n    id\n    form_key\n    type\n    name\n    form_data\n    recaptcha\n    status\n    submit_btn_name\n    submit_btn_bg_color\n    submit_btn_text_color\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"form_key\": \"Sample form_key\",\n        \"type\": \"Sample type\",\n        \"name\": \"Sample name\",\n        \"form_data\": \"Sample form_data\",\n        \"recaptcha\": 0,\n        \"status\": 0,\n        \"submit_btn_name\": \"Sample submit_btn_name\",\n        \"submit_btn_bg_color\": \"Sample submit_btn_bg_color\",\n        \"submit_btn_text_color\": \"Sample submit_btn_text_color\",\n        \"success_submit_msg\": \"Sample success_submit_msg\",\n        \"submit_action\": 0,\n        \"submit_redirect_url\": \"Sample submit_redirect_url\",\n        \"language\": \"Sample language\",\n        \"dateadded\": \"2026-04-01\",\n        \"notify_type\": \"Sample notify_type\",\n        \"notify_ids\": \"Sample notify_ids\",\n        \"responsible\": 0,\n        \"notify_request_submitted\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Estimate request forms",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateEstimate_request_forms($id: ID!, $input: Estimate_request_formsInput!) {\n  update_estimate_request_forms(id: $id, input: $input) {\n    id\n    form_key\n    type\n    name\n    form_data\n    recaptcha\n    status\n    submit_btn_name\n    submit_btn_bg_color\n    submit_btn_text_color\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"form_key\": \"Sample form_key\",\n        \"type\": \"Sample type\",\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Estimate request forms",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteEstimate_request_forms($id: ID!) {\n  delete_estimate_request_forms(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Estimate request status",
                    "item": [
                        {
                            "name": "List Estimate request status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetEstimate_request_statusList($limit: Int, $offset: Int) {\n  estimate_request_status(limit: $limit, offset: $offset) {\n    id\n    name\n    statusorder\n    color\n    flag\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Estimate request status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateEstimate_request_status($input: Estimate_request_statusInput!) {\n  create_estimate_request_status(input: $input) {\n    id\n    name\n    statusorder\n    color\n    flag\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"statusorder\": 0,\n        \"color\": \"Sample color\",\n        \"flag\": \"Sample flag\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Estimate request status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateEstimate_request_status($id: ID!, $input: Estimate_request_statusInput!) {\n  update_estimate_request_status(id: $id, input: $input) {\n    id\n    name\n    statusorder\n    color\n    flag\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"statusorder\": 0,\n        \"color\": \"Sample color\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Estimate request status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteEstimate_request_status($id: ID!) {\n  delete_estimate_request_status(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Estimate requests",
                    "item": [
                        {
                            "name": "List Estimate requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetEstimate_requestsList($limit: Int, $offset: Int) {\n  estimate_requests(limit: $limit, offset: $offset) {\n    id\n    email\n    submission\n    last_status_change\n    date_estimated\n    from_form_id\n    assigned\n    status\n    default_language\n    date_added\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Estimate requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateEstimate_requests($input: Estimate_requestsInput!) {\n  create_estimate_requests(input: $input) {\n    id\n    email\n    submission\n    last_status_change\n    date_estimated\n    from_form_id\n    assigned\n    status\n    default_language\n    date_added\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"email\": \"demo@example.com\",\n        \"submission\": \"Sample submission\",\n        \"last_status_change\": \"Sample last_status_change\",\n        \"date_estimated\": \"2026-04-01\",\n        \"from_form_id\": 0,\n        \"assigned\": 0,\n        \"status\": 0,\n        \"default_language\": 0,\n        \"date_added\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Estimate requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateEstimate_requests($id: ID!, $input: Estimate_requestsInput!) {\n  update_estimate_requests(id: $id, input: $input) {\n    id\n    email\n    submission\n    last_status_change\n    date_estimated\n    from_form_id\n    assigned\n    status\n    default_language\n    date_added\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"email\": \"demo@example.com\",\n        \"submission\": \"Sample submission\",\n        \"last_status_change\": \"Sample last_status_change\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Estimate requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteEstimate_requests($id: ID!) {\n  delete_estimate_requests(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Estimates",
                    "item": [
                        {
                            "name": "List Estimates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetEstimatesList($limit: Int, $offset: Int) {\n  estimates(limit: $limit, offset: $offset) {\n    id\n    sent\n    datesend\n    clientid\n    deleted_customer_name\n    project_id\n    number\n    prefix\n    number_format\n    formatted_number\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Estimates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateEstimates($input: EstimatesInput!) {\n  create_estimates(input: $input) {\n    id\n    sent\n    datesend\n    clientid\n    deleted_customer_name\n    project_id\n    number\n    prefix\n    number_format\n    formatted_number\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"sent\": 0,\n        \"datesend\": \"2026-04-01\",\n        \"clientid\": 1,\n        \"deleted_customer_name\": \"Sample deleted_customer_name\",\n        \"project_id\": 0,\n        \"number\": 0,\n        \"prefix\": \"Sample prefix\",\n        \"number_format\": 0,\n        \"formatted_number\": \"Sample formatted_number\",\n        \"date\": \"2026-04-01\",\n        \"expirydate\": \"2026-04-01\",\n        \"currency\": 0,\n        \"subtotal\": \"0\",\n        \"total_tax\": \"0\",\n        \"total\": \"0\",\n        \"adjustment\": \"0\",\n        \"status\": 0,\n        \"clientnote\": \"Sample clientnote\",\n        \"adminnote\": \"Sample adminnote\",\n        \"discount_percent\": \"0\",\n        \"discount_total\": \"0\",\n        \"discount_type\": \"Sample discount_type\",\n        \"invoiceid\": 0,\n        \"invoiced_date\": \"2026-04-01\",\n        \"terms\": \"Sample terms\",\n        \"reference_no\": \"Sample reference_no\",\n        \"sale_agent\": 0,\n        \"billing_street\": \"Sample billing_street\",\n        \"billing_city\": \"Sample billing_city\",\n        \"billing_state\": \"Sample billing_state\",\n        \"billing_zip\": \"Sample billing_zip\",\n        \"billing_country\": 0,\n        \"shipping_street\": \"Sample shipping_street\",\n        \"shipping_city\": \"Sample shipping_city\",\n        \"shipping_state\": \"Sample shipping_state\",\n        \"shipping_zip\": \"Sample shipping_zip\",\n        \"shipping_country\": 0,\n        \"include_shipping\": 0,\n        \"show_shipping_on_estimate\": 0,\n        \"show_quantity_as\": 0,\n        \"pipeline_order\": 0,\n        \"is_expiry_notified\": 0,\n        \"acceptance_firstname\": \"Sample acceptance_firstname\",\n        \"acceptance_lastname\": \"Sample acceptance_lastname\",\n        \"acceptance_email\": \"demo@example.com\",\n        \"acceptance_date\": \"2026-04-01\",\n        \"acceptance_ip\": \"Sample acceptance_ip\",\n        \"signature\": \"Sample signature\",\n        \"short_link\": \"Sample short_link\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Estimates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateEstimates($id: ID!, $input: EstimatesInput!) {\n  update_estimates(id: $id, input: $input) {\n    id\n    sent\n    datesend\n    clientid\n    deleted_customer_name\n    project_id\n    number\n    prefix\n    number_format\n    formatted_number\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"sent\": 0,\n        \"datesend\": \"2026-04-01\",\n        \"clientid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Estimates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteEstimates($id: ID!) {\n  delete_estimates(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Events",
                    "item": [
                        {
                            "name": "List Events",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetEventsList($limit: Int, $offset: Int) {\n  events(limit: $limit, offset: $offset) {\n    eventid\n    title\n    description\n    userid\n    start\n    end\n    public\n    color\n    isstartnotified\n    reminder_before\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Events",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateEvents($input: EventsInput!) {\n  create_events(input: $input) {\n    eventid\n    title\n    description\n    userid\n    start\n    end\n    public\n    color\n    isstartnotified\n    reminder_before\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"eventid\": 0,\n        \"title\": \"Sample title\",\n        \"description\": \"Sample description for testing.\",\n        \"userid\": 1,\n        \"start\": \"Sample start\",\n        \"end\": \"Sample end\",\n        \"public\": 0,\n        \"color\": \"Sample color\",\n        \"isstartnotified\": 0,\n        \"reminder_before\": 0,\n        \"reminder_before_type\": \"Sample reminder_before_type\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Events",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateEvents($id: ID!, $input: EventsInput!) {\n  update_events(id: $id, input: $input) {\n    eventid\n    title\n    description\n    userid\n    start\n    end\n    public\n    color\n    isstartnotified\n    reminder_before\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"eventid\": 0,\n        \"title\": \"Sample title\",\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Events",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteEvents($id: ID!) {\n  delete_events(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Expenses",
                    "item": [
                        {
                            "name": "List Expenses",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetExpensesList($limit: Int, $offset: Int) {\n  expenses(limit: $limit, offset: $offset) {\n    id\n    category\n    currency\n    amount\n    tax\n    tax2\n    reference_no\n    note\n    expense_name\n    clientid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Expenses",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateExpenses($input: ExpensesInput!) {\n  create_expenses(input: $input) {\n    id\n    category\n    currency\n    amount\n    tax\n    tax2\n    reference_no\n    note\n    expense_name\n    clientid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"category\": 0,\n        \"currency\": 0,\n        \"amount\": \"0\",\n        \"tax\": 0,\n        \"tax2\": 0,\n        \"reference_no\": \"Sample reference_no\",\n        \"note\": \"Sample note\",\n        \"expense_name\": \"Sample expense_name\",\n        \"clientid\": 1,\n        \"project_id\": 0,\n        \"billable\": 0,\n        \"invoiceid\": 0,\n        \"paymentmode\": \"Sample paymentmode\",\n        \"date\": \"2026-04-01\",\n        \"recurring_type\": \"Sample recurring_type\",\n        \"repeat_every\": 0,\n        \"recurring\": 0,\n        \"cycles\": 0,\n        \"total_cycles\": 0,\n        \"custom_recurring\": 0,\n        \"last_recurring_date\": \"2026-04-01\",\n        \"create_invoice_billable\": 0,\n        \"send_invoice_to_customer\": 0,\n        \"recurring_from\": 0,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Expenses",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateExpenses($id: ID!, $input: ExpensesInput!) {\n  update_expenses(id: $id, input: $input) {\n    id\n    category\n    currency\n    amount\n    tax\n    tax2\n    reference_no\n    note\n    expense_name\n    clientid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"category\": 0,\n        \"currency\": 0,\n        \"amount\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Expenses",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteExpenses($id: ID!) {\n  delete_expenses(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Expenses categories",
                    "item": [
                        {
                            "name": "List Expenses categories",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetExpenses_categoriesList($limit: Int, $offset: Int) {\n  expenses_categories(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Expenses categories",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateExpenses_categories($input: Expenses_categoriesInput!) {\n  create_expenses_categories(input: $input) {\n    id\n    name\n    description\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Expenses categories",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateExpenses_categories($id: ID!, $input: Expenses_categoriesInput!) {\n  update_expenses_categories(id: $id, input: $input) {\n    id\n    name\n    description\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Expenses categories",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteExpenses_categories($id: ID!) {\n  delete_expenses_categories(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Files",
                    "item": [
                        {
                            "name": "List Files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetFilesList($limit: Int, $offset: Int) {\n  files(limit: $limit, offset: $offset) {\n    id\n    rel_id\n    rel_type\n    file_name\n    filetype\n    visible_to_customer\n    attachment_key\n    external\n    external_link\n    thumbnail_link\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateFiles($input: FilesInput!) {\n  create_files(input: $input) {\n    id\n    rel_id\n    rel_type\n    file_name\n    filetype\n    visible_to_customer\n    attachment_key\n    external\n    external_link\n    thumbnail_link\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"file_name\": \"Sample file_name\",\n        \"filetype\": \"Sample filetype\",\n        \"visible_to_customer\": 0,\n        \"attachment_key\": \"Sample attachment_key\",\n        \"external\": \"Sample external\",\n        \"external_link\": \"Sample external_link\",\n        \"thumbnail_link\": \"Sample thumbnail_link\",\n        \"staffid\": 1,\n        \"contact_id\": 0,\n        \"task_comment_id\": 0,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateFiles($id: ID!, $input: FilesInput!) {\n  update_files(id: $id, input: $input) {\n    id\n    rel_id\n    rel_type\n    file_name\n    filetype\n    visible_to_customer\n    attachment_key\n    external\n    external_link\n    thumbnail_link\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"file_name\": \"Sample file_name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteFiles($id: ID!) {\n  delete_files(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Filter defaults",
                    "item": [
                        {
                            "name": "List Filter defaults",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetFilter_defaultsList($limit: Int, $offset: Int) {\n  filter_defaults(limit: $limit, offset: $offset) {\n    filter_id\n    staff_id\n    identifier\n    view\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Filter defaults",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateFilter_defaults($input: Filter_defaultsInput!) {\n  create_filter_defaults(input: $input) {\n    filter_id\n    staff_id\n    identifier\n    view\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"filter_id\": 0,\n        \"staff_id\": 1,\n        \"identifier\": \"Sample identifier\",\n        \"view\": \"Sample view\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Filter defaults",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateFilter_defaults($id: ID!, $input: Filter_defaultsInput!) {\n  update_filter_defaults(id: $id, input: $input) {\n    filter_id\n    staff_id\n    identifier\n    view\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"filter_id\": 0,\n        \"staff_id\": 1,\n        \"identifier\": \"Sample identifier\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Filter defaults",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteFilter_defaults($id: ID!) {\n  delete_filter_defaults(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Filters",
                    "item": [
                        {
                            "name": "List Filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetFiltersList($limit: Int, $offset: Int) {\n  filters(limit: $limit, offset: $offset) {\n    id\n    name\n    builder\n    staff_id\n    identifier\n    is_shared\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateFilters($input: FiltersInput!) {\n  create_filters(input: $input) {\n    id\n    name\n    builder\n    staff_id\n    identifier\n    is_shared\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"builder\": \"Sample builder\",\n        \"staff_id\": 1,\n        \"identifier\": \"Sample identifier\",\n        \"is_shared\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateFilters($id: ID!, $input: FiltersInput!) {\n  update_filters(id: $id, input: $input) {\n    id\n    name\n    builder\n    staff_id\n    identifier\n    is_shared\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"builder\": \"Sample builder\",\n        \"staff_id\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteFilters($id: ID!) {\n  delete_filters(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Form question box",
                    "item": [
                        {
                            "name": "List Form question box",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetForm_question_boxList($limit: Int, $offset: Int) {\n  form_question_box(limit: $limit, offset: $offset) {\n    boxid\n    boxtype\n    questionid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Form question box",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateForm_question_box($input: Form_question_boxInput!) {\n  create_form_question_box(input: $input) {\n    boxid\n    boxtype\n    questionid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"boxid\": 0,\n        \"boxtype\": \"Sample boxtype\",\n        \"questionid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Form question box",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateForm_question_box($id: ID!, $input: Form_question_boxInput!) {\n  update_form_question_box(id: $id, input: $input) {\n    boxid\n    boxtype\n    questionid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"boxid\": 0,\n        \"boxtype\": \"Sample boxtype\",\n        \"questionid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Form question box",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteForm_question_box($id: ID!) {\n  delete_form_question_box(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Form question box description",
                    "item": [
                        {
                            "name": "List Form question box description",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetForm_question_box_descriptionList($limit: Int, $offset: Int) {\n  form_question_box_description(limit: $limit, offset: $offset) {\n    questionboxdescriptionid\n    description\n    boxid\n    questionid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Form question box description",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateForm_question_box_description($input: Form_question_box_descriptionInput!) {\n  create_form_question_box_description(input: $input) {\n    questionboxdescriptionid\n    description\n    boxid\n    questionid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"questionboxdescriptionid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"boxid\": \"Sample boxid\",\n        \"questionid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Form question box description",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateForm_question_box_description($id: ID!, $input: Form_question_box_descriptionInput!) {\n  update_form_question_box_description(id: $id, input: $input) {\n    questionboxdescriptionid\n    description\n    boxid\n    questionid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"questionboxdescriptionid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"boxid\": \"Sample boxid\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Form question box description",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteForm_question_box_description($id: ID!) {\n  delete_form_question_box_description(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Form questions",
                    "item": [
                        {
                            "name": "List Form questions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetForm_questionsList($limit: Int, $offset: Int) {\n  form_questions(limit: $limit, offset: $offset) {\n    questionid\n    rel_id\n    rel_type\n    question\n    required\n    question_order\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Form questions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateForm_questions($input: Form_questionsInput!) {\n  create_form_questions(input: $input) {\n    questionid\n    rel_id\n    rel_type\n    question\n    required\n    question_order\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"questionid\": 0,\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"question\": \"Sample question\",\n        \"required\": 0,\n        \"question_order\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Form questions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateForm_questions($id: ID!, $input: Form_questionsInput!) {\n  update_form_questions(id: $id, input: $input) {\n    questionid\n    rel_id\n    rel_type\n    question\n    required\n    question_order\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"questionid\": 0,\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Form questions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteForm_questions($id: ID!) {\n  delete_form_questions(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Form results",
                    "item": [
                        {
                            "name": "List Form results",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetForm_resultsList($limit: Int, $offset: Int) {\n  form_results(limit: $limit, offset: $offset) {\n    resultid\n    boxid\n    boxdescriptionid\n    rel_id\n    rel_type\n    questionid\n    answer\n    resultsetid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Form results",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateForm_results($input: Form_resultsInput!) {\n  create_form_results(input: $input) {\n    resultid\n    boxid\n    boxdescriptionid\n    rel_id\n    rel_type\n    questionid\n    answer\n    resultsetid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"resultid\": 0,\n        \"boxid\": 0,\n        \"boxdescriptionid\": 0,\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"questionid\": 0,\n        \"answer\": \"Sample answer\",\n        \"resultsetid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Form results",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateForm_results($id: ID!, $input: Form_resultsInput!) {\n  update_form_results(id: $id, input: $input) {\n    resultid\n    boxid\n    boxdescriptionid\n    rel_id\n    rel_type\n    questionid\n    answer\n    resultsetid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"resultid\": 0,\n        \"boxid\": 0,\n        \"boxdescriptionid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Form results",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteForm_results($id: ID!) {\n  delete_form_results(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Gdpr requests",
                    "item": [
                        {
                            "name": "List Gdpr requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetGdpr_requestsList($limit: Int, $offset: Int) {\n  gdpr_requests(limit: $limit, offset: $offset) {\n    id\n    clientid\n    contact_id\n    lead_id\n    request_type\n    status\n    request_date\n    request_from\n    description\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Gdpr requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateGdpr_requests($input: Gdpr_requestsInput!) {\n  create_gdpr_requests(input: $input) {\n    id\n    clientid\n    contact_id\n    lead_id\n    request_type\n    status\n    request_date\n    request_from\n    description\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"clientid\": 1,\n        \"contact_id\": 0,\n        \"lead_id\": 0,\n        \"request_type\": \"Sample request_type\",\n        \"status\": 0,\n        \"request_date\": \"2026-04-01\",\n        \"request_from\": \"Sample request_from\",\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Gdpr requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateGdpr_requests($id: ID!, $input: Gdpr_requestsInput!) {\n  update_gdpr_requests(id: $id, input: $input) {\n    id\n    clientid\n    contact_id\n    lead_id\n    request_type\n    status\n    request_date\n    request_from\n    description\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"clientid\": 1,\n        \"contact_id\": 0,\n        \"lead_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Gdpr requests",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteGdpr_requests($id: ID!) {\n  delete_gdpr_requests(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Customer groups",
                    "item": [
                        {
                            "name": "List Customer groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetCustomer_groupsList($limit: Int, $offset: Int) {\n  customer_groups(limit: $limit, offset: $offset) {\n    id\n    groupid\n    customer_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Customer groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateCustomer_groups($input: Customer_groupsInput!) {\n  create_customer_groups(input: $input) {\n    id\n    groupid\n    customer_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"groupid\": 0,\n        \"customer_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Customer groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateCustomer_groups($id: ID!, $input: Customer_groupsInput!) {\n  update_customer_groups(id: $id, input: $input) {\n    id\n    groupid\n    customer_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"groupid\": 0,\n        \"customer_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Customer groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteCustomer_groups($id: ID!) {\n  delete_customer_groups(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Items groups",
                    "item": [
                        {
                            "name": "List Items groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetItems_groupsList($limit: Int, $offset: Int) {\n  items_groups(limit: $limit, offset: $offset) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Items groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateItems_groups($input: Items_groupsInput!) {\n  create_items_groups(input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Items groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateItems_groups($id: ID!, $input: Items_groupsInput!) {\n  update_items_groups(id: $id, input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Items groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteItems_groups($id: ID!) {\n  delete_items_groups(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Invoicepaymentrecords",
                    "item": [
                        {
                            "name": "List Invoicepaymentrecords",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetInvoicepaymentrecordsList($limit: Int, $offset: Int) {\n  invoicepaymentrecords(limit: $limit, offset: $offset) {\n    id\n    invoiceid\n    amount\n    paymentmode\n    paymentmethod\n    date\n    daterecorded\n    note\n    transactionid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Invoicepaymentrecords",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateInvoicepaymentrecords($input: InvoicepaymentrecordsInput!) {\n  create_invoicepaymentrecords(input: $input) {\n    id\n    invoiceid\n    amount\n    paymentmode\n    paymentmethod\n    date\n    daterecorded\n    note\n    transactionid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"invoiceid\": 0,\n        \"amount\": \"0\",\n        \"paymentmode\": \"Sample paymentmode\",\n        \"paymentmethod\": \"Sample paymentmethod\",\n        \"date\": \"2026-04-01\",\n        \"daterecorded\": \"2026-04-01\",\n        \"note\": \"Sample note\",\n        \"transactionid\": \"Sample transactionid\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Invoicepaymentrecords",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateInvoicepaymentrecords($id: ID!, $input: InvoicepaymentrecordsInput!) {\n  update_invoicepaymentrecords(id: $id, input: $input) {\n    id\n    invoiceid\n    amount\n    paymentmode\n    paymentmethod\n    date\n    daterecorded\n    note\n    transactionid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"invoiceid\": 0,\n        \"amount\": \"0\",\n        \"paymentmode\": \"Sample paymentmode\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Invoicepaymentrecords",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteInvoicepaymentrecords($id: ID!) {\n  delete_invoicepaymentrecords(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Invoices",
                    "item": [
                        {
                            "name": "List Invoices",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetInvoicesList($limit: Int, $offset: Int) {\n  invoices(limit: $limit, offset: $offset) {\n    id\n    sent\n    datesend\n    clientid\n    deleted_customer_name\n    number\n    prefix\n    number_format\n    formatted_number\n    datecreated\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Invoices",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateInvoices($input: InvoicesInput!) {\n  create_invoices(input: $input) {\n    id\n    sent\n    datesend\n    clientid\n    deleted_customer_name\n    number\n    prefix\n    number_format\n    formatted_number\n    datecreated\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"sent\": 0,\n        \"datesend\": \"2026-04-01\",\n        \"clientid\": 1,\n        \"deleted_customer_name\": \"Sample deleted_customer_name\",\n        \"number\": 0,\n        \"prefix\": \"Sample prefix\",\n        \"number_format\": 0,\n        \"formatted_number\": \"Sample formatted_number\",\n        \"date\": \"2026-04-01\",\n        \"duedate\": \"2026-04-01\",\n        \"currency\": 0,\n        \"subtotal\": \"0\",\n        \"total_tax\": \"0\",\n        \"total\": \"0\",\n        \"adjustment\": \"0\",\n        \"status\": 0,\n        \"clientnote\": \"Sample clientnote\",\n        \"adminnote\": \"Sample adminnote\",\n        \"last_overdue_reminder\": \"Sample last_overdue_reminder\",\n        \"last_due_reminder\": \"Sample last_due_reminder\",\n        \"cancel_overdue_reminders\": 0,\n        \"allowed_payment_modes\": \"Sample allowed_payment_modes\",\n        \"token\": \"Sample token\",\n        \"discount_percent\": \"0\",\n        \"discount_total\": \"0\",\n        \"discount_type\": \"Sample discount_type\",\n        \"recurring\": 0,\n        \"recurring_type\": \"Sample recurring_type\",\n        \"custom_recurring\": 0,\n        \"cycles\": 0,\n        \"total_cycles\": 0,\n        \"is_recurring_from\": 0,\n        \"last_recurring_date\": \"2026-04-01\",\n        \"terms\": \"Sample terms\",\n        \"sale_agent\": 0,\n        \"billing_street\": \"Sample billing_street\",\n        \"billing_city\": \"Sample billing_city\",\n        \"billing_state\": \"Sample billing_state\",\n        \"billing_zip\": \"Sample billing_zip\",\n        \"billing_country\": 0,\n        \"shipping_street\": \"Sample shipping_street\",\n        \"shipping_city\": \"Sample shipping_city\",\n        \"shipping_state\": \"Sample shipping_state\",\n        \"shipping_zip\": \"Sample shipping_zip\",\n        \"shipping_country\": 0,\n        \"include_shipping\": 0,\n        \"show_shipping_on_invoice\": 0,\n        \"show_quantity_as\": 0,\n        \"project_id\": 0,\n        \"subscription_id\": 0,\n        \"short_link\": \"Sample short_link\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Invoices",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateInvoices($id: ID!, $input: InvoicesInput!) {\n  update_invoices(id: $id, input: $input) {\n    id\n    sent\n    datesend\n    clientid\n    deleted_customer_name\n    number\n    prefix\n    number_format\n    formatted_number\n    datecreated\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"sent\": 0,\n        \"datesend\": \"2026-04-01\",\n        \"clientid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Invoices",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteInvoices($id: ID!) {\n  delete_invoices(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Item tax",
                    "item": [
                        {
                            "name": "List Item tax",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetItem_taxList($limit: Int, $offset: Int) {\n  item_tax(limit: $limit, offset: $offset) {\n    id\n    itemid\n    rel_id\n    rel_type\n    taxrate\n    taxname\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Item tax",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateItem_tax($input: Item_taxInput!) {\n  create_item_tax(input: $input) {\n    id\n    itemid\n    rel_id\n    rel_type\n    taxrate\n    taxname\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"itemid\": 0,\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"taxrate\": \"0\",\n        \"taxname\": \"Sample taxname\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Item tax",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateItem_tax($id: ID!, $input: Item_taxInput!) {\n  update_item_tax(id: $id, input: $input) {\n    id\n    itemid\n    rel_id\n    rel_type\n    taxrate\n    taxname\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"itemid\": 0,\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Item tax",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteItem_tax($id: ID!) {\n  delete_item_tax(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Itemable",
                    "item": [
                        {
                            "name": "List Itemable",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetItemableList($limit: Int, $offset: Int) {\n  itemable(limit: $limit, offset: $offset) {\n    id\n    rel_id\n    rel_type\n    description\n    long_description\n    qty\n    rate\n    unit\n    is_optional\n    is_selected\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Itemable",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateItemable($input: ItemableInput!) {\n  create_itemable(input: $input) {\n    id\n    rel_id\n    rel_type\n    description\n    long_description\n    qty\n    rate\n    unit\n    is_optional\n    is_selected\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"description\": \"Sample description for testing.\",\n        \"long_description\": \"Sample description for testing.\",\n        \"qty\": \"0\",\n        \"rate\": \"0\",\n        \"unit\": \"Sample unit\",\n        \"is_optional\": 0,\n        \"is_selected\": 0,\n        \"item_order\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Itemable",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateItemable($id: ID!, $input: ItemableInput!) {\n  update_itemable(id: $id, input: $input) {\n    id\n    rel_id\n    rel_type\n    description\n    long_description\n    qty\n    rate\n    unit\n    is_optional\n    is_selected\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Itemable",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteItemable($id: ID!) {\n  delete_itemable(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Items",
                    "item": [
                        {
                            "name": "List Items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetItemsList($limit: Int, $offset: Int) {\n  items(limit: $limit, offset: $offset) {\n    id\n    description\n    long_description\n    rate\n    tax\n    tax2\n    unit\n    group_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateItems($input: ItemsInput!) {\n  create_items(input: $input) {\n    id\n    description\n    long_description\n    rate\n    tax\n    tax2\n    unit\n    group_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"description\": \"Sample description for testing.\",\n        \"long_description\": \"Sample description for testing.\",\n        \"rate\": \"0\",\n        \"tax\": 0,\n        \"tax2\": 0,\n        \"unit\": \"Sample unit\",\n        \"group_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateItems($id: ID!, $input: ItemsInput!) {\n  update_items(id: $id, input: $input) {\n    id\n    description\n    long_description\n    rate\n    tax\n    tax2\n    unit\n    group_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"description\": \"Sample description for testing.\",\n        \"long_description\": \"Sample description for testing.\",\n        \"rate\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteItems($id: ID!) {\n  delete_items(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Knowledge base groups",
                    "item": [
                        {
                            "name": "List Knowledge base groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetKnowledge_base_groupsList($limit: Int, $offset: Int) {\n  knowledge_base_groups(limit: $limit, offset: $offset) {\n    groupid\n    name\n    group_slug\n    description\n    active\n    color\n    group_order\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Knowledge base groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateKnowledge_base_groups($input: Knowledge_base_groupsInput!) {\n  create_knowledge_base_groups(input: $input) {\n    groupid\n    name\n    group_slug\n    description\n    active\n    color\n    group_order\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"groupid\": 0,\n        \"name\": \"Sample name\",\n        \"group_slug\": \"Sample group_slug\",\n        \"description\": \"Sample description for testing.\",\n        \"active\": 0,\n        \"color\": \"Sample color\",\n        \"group_order\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Knowledge base groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateKnowledge_base_groups($id: ID!, $input: Knowledge_base_groupsInput!) {\n  update_knowledge_base_groups(id: $id, input: $input) {\n    groupid\n    name\n    group_slug\n    description\n    active\n    color\n    group_order\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"groupid\": 0,\n        \"name\": \"Sample name\",\n        \"group_slug\": \"Sample group_slug\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Knowledge base groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteKnowledge_base_groups($id: ID!) {\n  delete_knowledge_base_groups(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Knowedge base article feedback",
                    "item": [
                        {
                            "name": "List Knowedge base article feedback",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetKnowedge_base_article_feedbackList($limit: Int, $offset: Int) {\n  knowedge_base_article_feedback(limit: $limit, offset: $offset) {\n    articleanswerid\n    articleid\n    answer\n    ip\n    date\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Knowedge base article feedback",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateKnowedge_base_article_feedback($input: Knowedge_base_article_feedbackInput!) {\n  create_knowedge_base_article_feedback(input: $input) {\n    articleanswerid\n    articleid\n    answer\n    ip\n    date\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"articleanswerid\": 0,\n        \"articleid\": 0,\n        \"answer\": 0,\n        \"ip\": \"Sample ip\",\n        \"date\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Knowedge base article feedback",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateKnowedge_base_article_feedback($id: ID!, $input: Knowedge_base_article_feedbackInput!) {\n  update_knowedge_base_article_feedback(id: $id, input: $input) {\n    articleanswerid\n    articleid\n    answer\n    ip\n    date\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"articleanswerid\": 0,\n        \"articleid\": 0,\n        \"answer\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Knowedge base article feedback",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteKnowedge_base_article_feedback($id: ID!) {\n  delete_knowedge_base_article_feedback(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Knowledge base",
                    "item": [
                        {
                            "name": "List Knowledge base",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetKnowledge_baseList($limit: Int, $offset: Int) {\n  knowledge_base(limit: $limit, offset: $offset) {\n    articleid\n    articlegroup\n    subject\n    description\n    slug\n    active\n    datecreated\n    article_order\n    staff_article\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Knowledge base",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateKnowledge_base($input: Knowledge_baseInput!) {\n  create_knowledge_base(input: $input) {\n    articleid\n    articlegroup\n    subject\n    description\n    slug\n    active\n    datecreated\n    article_order\n    staff_article\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"articleid\": 0,\n        \"articlegroup\": 0,\n        \"subject\": \"Sample subject\",\n        \"description\": \"Sample description for testing.\",\n        \"slug\": \"Sample slug\",\n        \"active\": 0,\n        \"article_order\": 0,\n        \"staff_article\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Knowledge base",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateKnowledge_base($id: ID!, $input: Knowledge_baseInput!) {\n  update_knowledge_base(id: $id, input: $input) {\n    articleid\n    articlegroup\n    subject\n    description\n    slug\n    active\n    datecreated\n    article_order\n    staff_article\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"articleid\": 0,\n        \"articlegroup\": 0,\n        \"subject\": \"Sample subject\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Knowledge base",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteKnowledge_base($id: ID!) {\n  delete_knowledge_base(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Lead activity log",
                    "item": [
                        {
                            "name": "List Lead activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetLead_activity_logList($limit: Int, $offset: Int) {\n  lead_activity_log(limit: $limit, offset: $offset) {\n    id\n    leadid\n    description\n    additional_data\n    date\n    staffid\n    full_name\n    custom_activity\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Lead activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateLead_activity_log($input: Lead_activity_logInput!) {\n  create_lead_activity_log(input: $input) {\n    id\n    leadid\n    description\n    additional_data\n    date\n    staffid\n    full_name\n    custom_activity\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"leadid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"additional_data\": \"Sample additional_data\",\n        \"date\": \"2026-04-01\",\n        \"staffid\": 1,\n        \"full_name\": \"Sample full_name\",\n        \"custom_activity\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Lead activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateLead_activity_log($id: ID!, $input: Lead_activity_logInput!) {\n  update_lead_activity_log(id: $id, input: $input) {\n    id\n    leadid\n    description\n    additional_data\n    date\n    staffid\n    full_name\n    custom_activity\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"leadid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"additional_data\": \"Sample additional_data\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Lead activity log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteLead_activity_log($id: ID!) {\n  delete_lead_activity_log(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Lead integration emails",
                    "item": [
                        {
                            "name": "List Lead integration emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetLead_integration_emailsList($limit: Int, $offset: Int) {\n  lead_integration_emails(limit: $limit, offset: $offset) {\n    id\n    subject\n    body\n    dateadded\n    leadid\n    emailid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Lead integration emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateLead_integration_emails($input: Lead_integration_emailsInput!) {\n  create_lead_integration_emails(input: $input) {\n    id\n    subject\n    body\n    dateadded\n    leadid\n    emailid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"subject\": \"Sample subject\",\n        \"body\": \"Sample body\",\n        \"dateadded\": \"2026-04-01\",\n        \"leadid\": 0,\n        \"emailid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Lead integration emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateLead_integration_emails($id: ID!, $input: Lead_integration_emailsInput!) {\n  update_lead_integration_emails(id: $id, input: $input) {\n    id\n    subject\n    body\n    dateadded\n    leadid\n    emailid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"subject\": \"Sample subject\",\n        \"body\": \"Sample body\",\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Lead integration emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteLead_integration_emails($id: ID!) {\n  delete_lead_integration_emails(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Leads sources",
                    "item": [
                        {
                            "name": "List Leads sources",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetLeads_sourcesList($limit: Int, $offset: Int) {\n  leads_sources(limit: $limit, offset: $offset) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Leads sources",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateLeads_sources($input: Leads_sourcesInput!) {\n  create_leads_sources(input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Leads sources",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateLeads_sources($id: ID!, $input: Leads_sourcesInput!) {\n  update_leads_sources(id: $id, input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Leads sources",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteLeads_sources($id: ID!) {\n  delete_leads_sources(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Leads status",
                    "item": [
                        {
                            "name": "List Leads status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetLeads_statusList($limit: Int, $offset: Int) {\n  leads_status(limit: $limit, offset: $offset) {\n    id\n    name\n    statusorder\n    color\n    isdefault\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Leads status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateLeads_status($input: Leads_statusInput!) {\n  create_leads_status(input: $input) {\n    id\n    name\n    statusorder\n    color\n    isdefault\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"statusorder\": 0,\n        \"color\": \"Sample color\",\n        \"isdefault\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Leads status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateLeads_status($id: ID!, $input: Leads_statusInput!) {\n  update_leads_status(id: $id, input: $input) {\n    id\n    name\n    statusorder\n    color\n    isdefault\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"statusorder\": 0,\n        \"color\": \"Sample color\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Leads status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteLeads_status($id: ID!) {\n  delete_leads_status(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Leads",
                    "item": [
                        {
                            "name": "List Leads",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetLeadsList($limit: Int, $offset: Int) {\n  leads(limit: $limit, offset: $offset) {\n    id\n    name\n    title\n    company\n    description\n    country\n    zip\n    city\n    state\n    address\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Leads",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateLeads($input: LeadsInput!) {\n  create_leads(input: $input) {\n    id\n    name\n    title\n    company\n    description\n    country\n    zip\n    city\n    state\n    address\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"title\": \"Sample title\",\n        \"company\": \"Sample company\",\n        \"description\": \"Sample description for testing.\",\n        \"country\": 0,\n        \"zip\": \"Sample zip\",\n        \"city\": \"Sample city\",\n        \"state\": \"Sample state\",\n        \"address\": \"Sample address\",\n        \"assigned\": 0,\n        \"dateadded\": \"2026-04-01\",\n        \"from_form_id\": 0,\n        \"status\": 0,\n        \"source\": 0,\n        \"lastcontact\": \"Sample lastcontact\",\n        \"dateassigned\": \"2026-04-01\",\n        \"last_status_change\": \"Sample last_status_change\",\n        \"email\": \"demo@example.com\",\n        \"website\": \"Sample website\",\n        \"leadorder\": 0,\n        \"phonenumber\": \"+1234567890\",\n        \"date_converted\": \"2026-04-01\",\n        \"lost\": 0,\n        \"junk\": 0,\n        \"last_lead_status\": 0,\n        \"is_imported_from_email_integration\": 0,\n        \"email_integration_uid\": \"demo@example.com\",\n        \"is_public\": 0,\n        \"default_language\": \"Sample default_language\",\n        \"client_id\": 1,\n        \"lead_value\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Leads",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateLeads($id: ID!, $input: LeadsInput!) {\n  update_leads(id: $id, input: $input) {\n    id\n    name\n    title\n    company\n    description\n    country\n    zip\n    city\n    state\n    address\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"title\": \"Sample title\",\n        \"company\": \"Sample company\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Leads",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteLeads($id: ID!) {\n  delete_leads(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Leads email integration",
                    "item": [
                        {
                            "name": "List Leads email integration",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetLeads_email_integrationList($limit: Int, $offset: Int) {\n  leads_email_integration(limit: $limit, offset: $offset) {\n    id\n    active\n    email\n    imap_server\n    check_every\n    responsible\n    lead_source\n    lead_status\n    encryption\n    folder\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Leads email integration",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateLeads_email_integration($input: Leads_email_integrationInput!) {\n  create_leads_email_integration(input: $input) {\n    id\n    active\n    email\n    imap_server\n    check_every\n    responsible\n    lead_source\n    lead_status\n    encryption\n    folder\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"active\": 0,\n        \"email\": \"demo@example.com\",\n        \"imap_server\": \"Sample imap_server\",\n        \"check_every\": 0,\n        \"responsible\": 0,\n        \"lead_source\": 0,\n        \"lead_status\": 0,\n        \"encryption\": \"Sample encryption\",\n        \"folder\": \"Sample folder\",\n        \"last_run\": \"Sample last_run\",\n        \"notify_lead_imported\": 0,\n        \"notify_lead_contact_more_times\": 0,\n        \"notify_type\": \"Sample notify_type\",\n        \"notify_ids\": \"Sample notify_ids\",\n        \"mark_public\": 0,\n        \"only_loop_on_unseen_emails\": 0,\n        \"delete_after_import\": 0,\n        \"create_task_if_customer\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Leads email integration",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateLeads_email_integration($id: ID!, $input: Leads_email_integrationInput!) {\n  update_leads_email_integration(id: $id, input: $input) {\n    id\n    active\n    email\n    imap_server\n    check_every\n    responsible\n    lead_source\n    lead_status\n    encryption\n    folder\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"active\": 0,\n        \"email\": \"demo@example.com\",\n        \"imap_server\": \"Sample imap_server\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Leads email integration",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteLeads_email_integration($id: ID!) {\n  delete_leads_email_integration(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Mail queue",
                    "item": [
                        {
                            "name": "List Mail queue",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetMail_queueList($limit: Int, $offset: Int) {\n  mail_queue(limit: $limit, offset: $offset) {\n    id\n    engine\n    email\n    cc\n    bcc\n    message\n    alt_message\n    status\n    date\n    headers\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Mail queue",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateMail_queue($input: Mail_queueInput!) {\n  create_mail_queue(input: $input) {\n    id\n    engine\n    email\n    cc\n    bcc\n    message\n    alt_message\n    status\n    date\n    headers\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"engine\": \"Sample engine\",\n        \"email\": \"demo@example.com\",\n        \"cc\": \"Sample cc\",\n        \"bcc\": \"Sample bcc\",\n        \"message\": \"Sample message\",\n        \"alt_message\": \"Sample alt_message\",\n        \"status\": 0,\n        \"date\": \"2026-04-01\",\n        \"headers\": \"Sample headers\",\n        \"attachments\": \"Sample attachments\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Mail queue",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateMail_queue($id: ID!, $input: Mail_queueInput!) {\n  update_mail_queue(id: $id, input: $input) {\n    id\n    engine\n    email\n    cc\n    bcc\n    message\n    alt_message\n    status\n    date\n    headers\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"engine\": \"Sample engine\",\n        \"email\": \"demo@example.com\",\n        \"cc\": \"Sample cc\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Mail queue",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteMail_queue($id: ID!) {\n  delete_mail_queue(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Migrations",
                    "item": [
                        {
                            "name": "List Migrations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetMigrationsList($limit: Int, $offset: Int) {\n  migrations(limit: $limit, offset: $offset) {\n    version\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Migrations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateMigrations($input: MigrationsInput!) {\n  create_migrations(input: $input) {\n    version\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"version\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Migrations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateMigrations($id: ID!, $input: MigrationsInput!) {\n  update_migrations(id: $id, input: $input) {\n    version\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"version\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Migrations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteMigrations($id: ID!) {\n  delete_migrations(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Modules",
                    "item": [
                        {
                            "name": "List Modules",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetModulesList($limit: Int, $offset: Int) {\n  modules(limit: $limit, offset: $offset) {\n    id\n    module_name\n    installed_version\n    active\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Modules",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateModules($input: ModulesInput!) {\n  create_modules(input: $input) {\n    id\n    module_name\n    installed_version\n    active\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"module_name\": \"Sample module_name\",\n        \"installed_version\": \"Sample installed_version\",\n        \"active\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Modules",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateModules($id: ID!, $input: ModulesInput!) {\n  update_modules(id: $id, input: $input) {\n    id\n    module_name\n    installed_version\n    active\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"module_name\": \"Sample module_name\",\n        \"installed_version\": \"Sample installed_version\",\n        \"active\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Modules",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteModules($id: ID!) {\n  delete_modules(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Newsfeed comment likes",
                    "item": [
                        {
                            "name": "List Newsfeed comment likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetNewsfeed_comment_likesList($limit: Int, $offset: Int) {\n  newsfeed_comment_likes(limit: $limit, offset: $offset) {\n    id\n    postid\n    commentid\n    userid\n    dateliked\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Newsfeed comment likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateNewsfeed_comment_likes($input: Newsfeed_comment_likesInput!) {\n  create_newsfeed_comment_likes(input: $input) {\n    id\n    postid\n    commentid\n    userid\n    dateliked\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"postid\": 0,\n        \"commentid\": 0,\n        \"userid\": 1,\n        \"dateliked\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Newsfeed comment likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateNewsfeed_comment_likes($id: ID!, $input: Newsfeed_comment_likesInput!) {\n  update_newsfeed_comment_likes(id: $id, input: $input) {\n    id\n    postid\n    commentid\n    userid\n    dateliked\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"postid\": 0,\n        \"commentid\": 0,\n        \"userid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Newsfeed comment likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteNewsfeed_comment_likes($id: ID!) {\n  delete_newsfeed_comment_likes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Newsfeed post comments",
                    "item": [
                        {
                            "name": "List Newsfeed post comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetNewsfeed_post_commentsList($limit: Int, $offset: Int) {\n  newsfeed_post_comments(limit: $limit, offset: $offset) {\n    id\n    content\n    userid\n    postid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Newsfeed post comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateNewsfeed_post_comments($input: Newsfeed_post_commentsInput!) {\n  create_newsfeed_post_comments(input: $input) {\n    id\n    content\n    userid\n    postid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"userid\": 1,\n        \"postid\": 0,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Newsfeed post comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateNewsfeed_post_comments($id: ID!, $input: Newsfeed_post_commentsInput!) {\n  update_newsfeed_post_comments(id: $id, input: $input) {\n    id\n    content\n    userid\n    postid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"userid\": 1,\n        \"postid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Newsfeed post comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteNewsfeed_post_comments($id: ID!) {\n  delete_newsfeed_post_comments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Newsfeed post likes",
                    "item": [
                        {
                            "name": "List Newsfeed post likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetNewsfeed_post_likesList($limit: Int, $offset: Int) {\n  newsfeed_post_likes(limit: $limit, offset: $offset) {\n    id\n    postid\n    userid\n    dateliked\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Newsfeed post likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateNewsfeed_post_likes($input: Newsfeed_post_likesInput!) {\n  create_newsfeed_post_likes(input: $input) {\n    id\n    postid\n    userid\n    dateliked\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"postid\": 0,\n        \"userid\": 1,\n        \"dateliked\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Newsfeed post likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateNewsfeed_post_likes($id: ID!, $input: Newsfeed_post_likesInput!) {\n  update_newsfeed_post_likes(id: $id, input: $input) {\n    id\n    postid\n    userid\n    dateliked\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"postid\": 0,\n        \"userid\": 1,\n        \"dateliked\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Newsfeed post likes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteNewsfeed_post_likes($id: ID!) {\n  delete_newsfeed_post_likes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Newsfeed posts",
                    "item": [
                        {
                            "name": "List Newsfeed posts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetNewsfeed_postsList($limit: Int, $offset: Int) {\n  newsfeed_posts(limit: $limit, offset: $offset) {\n    postid\n    creator\n    datecreated\n    visibility\n    content\n    pinned\n    datepinned\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Newsfeed posts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateNewsfeed_posts($input: Newsfeed_postsInput!) {\n  create_newsfeed_posts(input: $input) {\n    postid\n    creator\n    datecreated\n    visibility\n    content\n    pinned\n    datepinned\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"postid\": 0,\n        \"creator\": 0,\n        \"visibility\": \"Sample visibility\",\n        \"content\": \"Sample description for testing.\",\n        \"pinned\": 0,\n        \"datepinned\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Newsfeed posts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateNewsfeed_posts($id: ID!, $input: Newsfeed_postsInput!) {\n  update_newsfeed_posts(id: $id, input: $input) {\n    postid\n    creator\n    datecreated\n    visibility\n    content\n    pinned\n    datepinned\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"postid\": 0,\n        \"creator\": 0,\n        \"visibility\": \"Sample visibility\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Newsfeed posts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteNewsfeed_posts($id: ID!) {\n  delete_newsfeed_posts(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Notes",
                    "item": [
                        {
                            "name": "List Notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetNotesList($limit: Int, $offset: Int) {\n  notes(limit: $limit, offset: $offset) {\n    id\n    rel_id\n    rel_type\n    description\n    date_contacted\n    addedfrom\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateNotes($input: NotesInput!) {\n  create_notes(input: $input) {\n    id\n    rel_id\n    rel_type\n    description\n    date_contacted\n    addedfrom\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"description\": \"Sample description for testing.\",\n        \"date_contacted\": \"2026-04-01\",\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateNotes($id: ID!, $input: NotesInput!) {\n  update_notes(id: $id, input: $input) {\n    id\n    rel_id\n    rel_type\n    description\n    date_contacted\n    addedfrom\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteNotes($id: ID!) {\n  delete_notes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Notifications",
                    "item": [
                        {
                            "name": "List Notifications",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetNotificationsList($limit: Int, $offset: Int) {\n  notifications(limit: $limit, offset: $offset) {\n    id\n    isread\n    isread_inline\n    date\n    description\n    fromuserid\n    fromclientid\n    from_fullname\n    touserid\n    fromcompany\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Notifications",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateNotifications($input: NotificationsInput!) {\n  create_notifications(input: $input) {\n    id\n    isread\n    isread_inline\n    date\n    description\n    fromuserid\n    fromclientid\n    from_fullname\n    touserid\n    fromcompany\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"isread\": 0,\n        \"isread_inline\": 0,\n        \"date\": \"2026-04-01\",\n        \"description\": \"Sample description for testing.\",\n        \"fromuserid\": 0,\n        \"fromclientid\": 0,\n        \"from_fullname\": \"Sample from_fullname\",\n        \"touserid\": 0,\n        \"fromcompany\": 0,\n        \"link\": \"Sample link\",\n        \"additional_data\": \"Sample additional_data\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Notifications",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateNotifications($id: ID!, $input: NotificationsInput!) {\n  update_notifications(id: $id, input: $input) {\n    id\n    isread\n    isread_inline\n    date\n    description\n    fromuserid\n    fromclientid\n    from_fullname\n    touserid\n    fromcompany\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"isread\": 0,\n        \"isread_inline\": 0,\n        \"date\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Notifications",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteNotifications($id: ID!) {\n  delete_notifications(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Payment attempts",
                    "item": [
                        {
                            "name": "List Payment attempts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPayment_attemptsList($limit: Int, $offset: Int) {\n  payment_attempts(limit: $limit, offset: $offset) {\n    id\n    reference\n    invoice_id\n    amount\n    fee\n    payment_gateway\n    created_at\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Payment attempts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePayment_attempts($input: Payment_attemptsInput!) {\n  create_payment_attempts(input: $input) {\n    id\n    reference\n    invoice_id\n    amount\n    fee\n    payment_gateway\n    created_at\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"reference\": \"Sample reference\",\n        \"invoice_id\": 0,\n        \"amount\": \"0\",\n        \"fee\": \"0\",\n        \"payment_gateway\": \"Sample payment_gateway\",\n        \"created_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Payment attempts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePayment_attempts($id: ID!, $input: Payment_attemptsInput!) {\n  update_payment_attempts(id: $id, input: $input) {\n    id\n    reference\n    invoice_id\n    amount\n    fee\n    payment_gateway\n    created_at\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"reference\": \"Sample reference\",\n        \"invoice_id\": 0,\n        \"amount\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Payment attempts",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePayment_attempts($id: ID!) {\n  delete_payment_attempts(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Payment modes",
                    "item": [
                        {
                            "name": "List Payment modes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPayment_modesList($limit: Int, $offset: Int) {\n  payment_modes(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    show_on_pdf\n    invoices_only\n    expenses_only\n    selected_by_default\n    active\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Payment modes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePayment_modes($input: Payment_modesInput!) {\n  create_payment_modes(input: $input) {\n    id\n    name\n    description\n    show_on_pdf\n    invoices_only\n    expenses_only\n    selected_by_default\n    active\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"show_on_pdf\": 0,\n        \"invoices_only\": 0,\n        \"expenses_only\": 0,\n        \"selected_by_default\": 0,\n        \"active\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Payment modes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePayment_modes($id: ID!, $input: Payment_modesInput!) {\n  update_payment_modes(id: $id, input: $input) {\n    id\n    name\n    description\n    show_on_pdf\n    invoices_only\n    expenses_only\n    selected_by_default\n    active\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"show_on_pdf\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Payment modes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePayment_modes($id: ID!) {\n  delete_payment_modes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Pinned projects",
                    "item": [
                        {
                            "name": "List Pinned projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPinned_projectsList($limit: Int, $offset: Int) {\n  pinned_projects(limit: $limit, offset: $offset) {\n    id\n    project_id\n    staff_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Pinned projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePinned_projects($input: Pinned_projectsInput!) {\n  create_pinned_projects(input: $input) {\n    id\n    project_id\n    staff_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"project_id\": 0,\n        \"staff_id\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Pinned projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePinned_projects($id: ID!, $input: Pinned_projectsInput!) {\n  update_pinned_projects(id: $id, input: $input) {\n    id\n    project_id\n    staff_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"project_id\": 0,\n        \"staff_id\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Pinned projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePinned_projects($id: ID!) {\n  delete_pinned_projects(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb custom filters",
                    "item": [
                        {
                            "name": "List Polydb custom filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_custom_filtersList($limit: Int, $offset: Int) {\n  polydb_custom_filters(limit: $limit, offset: $offset) {\n    id\n    view_id\n    staff_id\n    name\n    filter_data\n    is_default\n    created_at\n    updated_at\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb custom filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_custom_filters($input: Polydb_custom_filtersInput!) {\n  create_polydb_custom_filters(input: $input) {\n    id\n    view_id\n    staff_id\n    name\n    filter_data\n    is_default\n    created_at\n    updated_at\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"view_id\": 0,\n        \"staff_id\": 1,\n        \"name\": \"Sample name\",\n        \"filter_data\": \"Sample filter_data\",\n        \"is_default\": 0,\n        \"created_at\": \"2026-04-01\",\n        \"updated_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb custom filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_custom_filters($id: ID!, $input: Polydb_custom_filtersInput!) {\n  update_polydb_custom_filters(id: $id, input: $input) {\n    id\n    view_id\n    staff_id\n    name\n    filter_data\n    is_default\n    created_at\n    updated_at\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"view_id\": 0,\n        \"staff_id\": 1,\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb custom filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_custom_filters($id: ID!) {\n  delete_polydb_custom_filters(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb custom indexes",
                    "item": [
                        {
                            "name": "List Polydb custom indexes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_custom_indexesList($limit: Int, $offset: Int) {\n  polydb_custom_indexes(limit: $limit, offset: $offset) {\n    id\n    view_id\n    table_name\n    column_names\n    index_name\n    created_at\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb custom indexes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_custom_indexes($input: Polydb_custom_indexesInput!) {\n  create_polydb_custom_indexes(input: $input) {\n    id\n    view_id\n    table_name\n    column_names\n    index_name\n    created_at\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"view_id\": 0,\n        \"table_name\": \"Sample table_name\",\n        \"column_names\": \"Sample column_names\",\n        \"index_name\": \"Sample index_name\",\n        \"created_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb custom indexes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_custom_indexes($id: ID!, $input: Polydb_custom_indexesInput!) {\n  update_polydb_custom_indexes(id: $id, input: $input) {\n    id\n    view_id\n    table_name\n    column_names\n    index_name\n    created_at\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"view_id\": 0,\n        \"table_name\": \"Sample table_name\",\n        \"column_names\": \"Sample column_names\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb custom indexes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_custom_indexes($id: ID!) {\n  delete_polydb_custom_indexes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb permission audit log",
                    "item": [
                        {
                            "name": "List Polydb permission audit log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_permission_audit_logList($limit: Int, $offset: Int) {\n  polydb_permission_audit_log(limit: $limit, offset: $offset) {\n    id\n    view_id\n    staff_id\n    action\n    permission_type\n    permission_id\n    ip_address\n    user_agent\n    created_at\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb permission audit log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_permission_audit_log($input: Polydb_permission_audit_logInput!) {\n  create_polydb_permission_audit_log(input: $input) {\n    id\n    view_id\n    staff_id\n    action\n    permission_type\n    permission_id\n    ip_address\n    user_agent\n    created_at\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"view_id\": 0,\n        \"staff_id\": 1,\n        \"action\": \"Sample action\",\n        \"permission_type\": \"Sample permission_type\",\n        \"permission_id\": 0,\n        \"ip_address\": \"Sample ip_address\",\n        \"user_agent\": \"Sample user_agent\",\n        \"created_at\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb permission audit log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_permission_audit_log($id: ID!, $input: Polydb_permission_audit_logInput!) {\n  update_polydb_permission_audit_log(id: $id, input: $input) {\n    id\n    view_id\n    staff_id\n    action\n    permission_type\n    permission_id\n    ip_address\n    user_agent\n    created_at\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"view_id\": 0,\n        \"staff_id\": 1,\n        \"action\": \"Sample action\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb permission audit log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_permission_audit_log($id: ID!) {\n  delete_polydb_permission_audit_log(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb report group items",
                    "item": [
                        {
                            "name": "List Polydb report group items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_report_group_itemsList($limit: Int, $offset: Int) {\n  polydb_report_group_items(limit: $limit, offset: $offset) {\n    id\n    group_id\n    view_id\n    sort_order\n    tab_label\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb report group items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_report_group_items($input: Polydb_report_group_itemsInput!) {\n  create_polydb_report_group_items(input: $input) {\n    id\n    group_id\n    view_id\n    sort_order\n    tab_label\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"group_id\": 0,\n        \"view_id\": 0,\n        \"sort_order\": 0,\n        \"tab_label\": \"Sample tab_label\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb report group items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_report_group_items($id: ID!, $input: Polydb_report_group_itemsInput!) {\n  update_polydb_report_group_items(id: $id, input: $input) {\n    id\n    group_id\n    view_id\n    sort_order\n    tab_label\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"group_id\": 0,\n        \"view_id\": 0,\n        \"sort_order\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb report group items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_report_group_items($id: ID!) {\n  delete_polydb_report_group_items(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb report groups",
                    "item": [
                        {
                            "name": "List Polydb report groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_report_groupsList($limit: Int, $offset: Int) {\n  polydb_report_groups(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    route\n    created_by\n    created_at\n    updated_at\n    status\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb report groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_report_groups($input: Polydb_report_groupsInput!) {\n  create_polydb_report_groups(input: $input) {\n    id\n    name\n    description\n    route\n    created_by\n    created_at\n    updated_at\n    status\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"route\": \"Sample route\",\n        \"created_by\": \"2026-04-01\",\n        \"created_at\": \"2026-04-01\",\n        \"updated_at\": \"2026-04-01\",\n        \"status\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb report groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_report_groups($id: ID!, $input: Polydb_report_groupsInput!) {\n  update_polydb_report_groups(id: $id, input: $input) {\n    id\n    name\n    description\n    route\n    created_by\n    created_at\n    updated_at\n    status\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"route\": \"Sample route\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb report groups",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_report_groups($id: ID!) {\n  delete_polydb_report_groups(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb table relations",
                    "item": [
                        {
                            "name": "List Polydb table relations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_table_relationsList($limit: Int, $offset: Int) {\n  polydb_table_relations(limit: $limit, offset: $offset) {\n    id\n    table_a\n    table_b\n    join_type\n    join_condition\n    is_default\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb table relations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_table_relations($input: Polydb_table_relationsInput!) {\n  create_polydb_table_relations(input: $input) {\n    id\n    table_a\n    table_b\n    join_type\n    join_condition\n    is_default\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"table_a\": \"Sample table_a\",\n        \"table_b\": \"Sample table_b\",\n        \"join_type\": \"Sample join_type\",\n        \"join_condition\": \"Sample join_condition\",\n        \"is_default\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb table relations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_table_relations($id: ID!, $input: Polydb_table_relationsInput!) {\n  update_polydb_table_relations(id: $id, input: $input) {\n    id\n    table_a\n    table_b\n    join_type\n    join_condition\n    is_default\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"table_a\": \"Sample table_a\",\n        \"table_b\": \"Sample table_b\",\n        \"join_type\": \"Sample join_type\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb table relations",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_table_relations($id: ID!) {\n  delete_polydb_table_relations(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb view permissions",
                    "item": [
                        {
                            "name": "List Polydb view permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_view_permissionsList($limit: Int, $offset: Int) {\n  polydb_view_permissions(limit: $limit, offset: $offset) {\n    id\n    view_id\n    permission_type\n    permission_id\n    can_view\n    can_edit\n    can_delete\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb view permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_view_permissions($input: Polydb_view_permissionsInput!) {\n  create_polydb_view_permissions(input: $input) {\n    id\n    view_id\n    permission_type\n    permission_id\n    can_view\n    can_edit\n    can_delete\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"view_id\": 0,\n        \"permission_type\": \"Sample permission_type\",\n        \"permission_id\": 0,\n        \"can_view\": 0,\n        \"can_edit\": 0,\n        \"can_delete\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb view permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_view_permissions($id: ID!, $input: Polydb_view_permissionsInput!) {\n  update_polydb_view_permissions(id: $id, input: $input) {\n    id\n    view_id\n    permission_type\n    permission_id\n    can_view\n    can_edit\n    can_delete\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"view_id\": 0,\n        \"permission_type\": \"Sample permission_type\",\n        \"permission_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb view permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_view_permissions($id: ID!) {\n  delete_polydb_view_permissions(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Polydb views",
                    "item": [
                        {
                            "name": "List Polydb views",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetPolydb_viewsList($limit: Int, $offset: Int) {\n  polydb_views(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    config_json\n    route\n    created_by\n    created_at\n    updated_at\n    is_public\n    public_access\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Polydb views",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreatePolydb_views($input: Polydb_viewsInput!) {\n  create_polydb_views(input: $input) {\n    id\n    name\n    description\n    config_json\n    route\n    created_by\n    created_at\n    updated_at\n    is_public\n    public_access\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"config_json\": \"Sample config_json\",\n        \"route\": \"Sample route\",\n        \"created_by\": \"2026-04-01\",\n        \"created_at\": \"2026-04-01\",\n        \"updated_at\": \"2026-04-01\",\n        \"is_public\": 0,\n        \"public_access\": 0,\n        \"status\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Polydb views",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdatePolydb_views($id: ID!, $input: Polydb_viewsInput!) {\n  update_polydb_views(id: $id, input: $input) {\n    id\n    name\n    description\n    config_json\n    route\n    created_by\n    created_at\n    updated_at\n    is_public\n    public_access\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"config_json\": \"Sample config_json\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Polydb views",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeletePolydb_views($id: ID!) {\n  delete_polydb_views(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Project activity",
                    "item": [
                        {
                            "name": "List Project activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProject_activityList($limit: Int, $offset: Int) {\n  project_activity(limit: $limit, offset: $offset) {\n    id\n    project_id\n    staff_id\n    contact_id\n    fullname\n    visible_to_customer\n    description_key\n    additional_data\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Project activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProject_activity($input: Project_activityInput!) {\n  create_project_activity(input: $input) {\n    id\n    project_id\n    staff_id\n    contact_id\n    fullname\n    visible_to_customer\n    description_key\n    additional_data\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"project_id\": 0,\n        \"staff_id\": 1,\n        \"contact_id\": 0,\n        \"fullname\": \"Sample fullname\",\n        \"visible_to_customer\": 0,\n        \"description_key\": \"Sample description_key\",\n        \"additional_data\": \"Sample additional_data\",\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Project activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProject_activity($id: ID!, $input: Project_activityInput!) {\n  update_project_activity(id: $id, input: $input) {\n    id\n    project_id\n    staff_id\n    contact_id\n    fullname\n    visible_to_customer\n    description_key\n    additional_data\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"project_id\": 0,\n        \"staff_id\": 1,\n        \"contact_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Project activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProject_activity($id: ID!) {\n  delete_project_activity(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Project files",
                    "item": [
                        {
                            "name": "List Project files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProject_filesList($limit: Int, $offset: Int) {\n  project_files(limit: $limit, offset: $offset) {\n    id\n    file_name\n    original_file_name\n    subject\n    description\n    filetype\n    dateadded\n    last_activity\n    project_id\n    visible_to_customer\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Project files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProject_files($input: Project_filesInput!) {\n  create_project_files(input: $input) {\n    id\n    file_name\n    original_file_name\n    subject\n    description\n    filetype\n    dateadded\n    last_activity\n    project_id\n    visible_to_customer\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"file_name\": \"Sample file_name\",\n        \"original_file_name\": \"Sample original_file_name\",\n        \"subject\": \"Sample subject\",\n        \"description\": \"Sample description for testing.\",\n        \"filetype\": \"Sample filetype\",\n        \"dateadded\": \"2026-04-01\",\n        \"project_id\": 0,\n        \"visible_to_customer\": 0,\n        \"staffid\": 1,\n        \"contact_id\": 0,\n        \"external\": \"Sample external\",\n        \"external_link\": \"Sample external_link\",\n        \"thumbnail_link\": \"Sample thumbnail_link\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Project files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProject_files($id: ID!, $input: Project_filesInput!) {\n  update_project_files(id: $id, input: $input) {\n    id\n    file_name\n    original_file_name\n    subject\n    description\n    filetype\n    dateadded\n    last_activity\n    project_id\n    visible_to_customer\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"file_name\": \"Sample file_name\",\n        \"original_file_name\": \"Sample original_file_name\",\n        \"subject\": \"Sample subject\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Project files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProject_files($id: ID!) {\n  delete_project_files(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Project members",
                    "item": [
                        {
                            "name": "List Project members",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProject_membersList($limit: Int, $offset: Int) {\n  project_members(limit: $limit, offset: $offset) {\n    id\n    project_id\n    staff_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Project members",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProject_members($input: Project_membersInput!) {\n  create_project_members(input: $input) {\n    id\n    project_id\n    staff_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"project_id\": 0,\n        \"staff_id\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Project members",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProject_members($id: ID!, $input: Project_membersInput!) {\n  update_project_members(id: $id, input: $input) {\n    id\n    project_id\n    staff_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"project_id\": 0,\n        \"staff_id\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Project members",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProject_members($id: ID!) {\n  delete_project_members(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Project notes",
                    "item": [
                        {
                            "name": "List Project notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProject_notesList($limit: Int, $offset: Int) {\n  project_notes(limit: $limit, offset: $offset) {\n    id\n    project_id\n    title\n    content\n    staff_id\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Project notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProject_notes($input: Project_notesInput!) {\n  create_project_notes(input: $input) {\n    id\n    project_id\n    title\n    content\n    staff_id\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"project_id\": 0,\n        \"title\": \"Sample title\",\n        \"content\": \"Sample description for testing.\",\n        \"staff_id\": 1,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Project notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProject_notes($id: ID!, $input: Project_notesInput!) {\n  update_project_notes(id: $id, input: $input) {\n    id\n    project_id\n    title\n    content\n    staff_id\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"project_id\": 0,\n        \"title\": \"Sample title\",\n        \"content\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Project notes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProject_notes($id: ID!) {\n  delete_project_notes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Project settings",
                    "item": [
                        {
                            "name": "List Project settings",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProject_settingsList($limit: Int, $offset: Int) {\n  project_settings(limit: $limit, offset: $offset) {\n    id\n    project_id\n    name\n    value\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Project settings",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProject_settings($input: Project_settingsInput!) {\n  create_project_settings(input: $input) {\n    id\n    project_id\n    name\n    value\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"project_id\": 0,\n        \"name\": \"Sample name\",\n        \"value\": \"Sample value\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Project settings",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProject_settings($id: ID!, $input: Project_settingsInput!) {\n  update_project_settings(id: $id, input: $input) {\n    id\n    project_id\n    name\n    value\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"project_id\": 0,\n        \"name\": \"Sample name\",\n        \"value\": \"Sample value\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Project settings",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProject_settings($id: ID!) {\n  delete_project_settings(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Projectdiscussioncomments",
                    "item": [
                        {
                            "name": "List Projectdiscussioncomments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProjectdiscussioncommentsList($limit: Int, $offset: Int) {\n  projectdiscussioncomments(limit: $limit, offset: $offset) {\n    id\n    discussion_id\n    discussion_type\n    parent\n    created\n    modified\n    content\n    staff_id\n    contact_id\n    fullname\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Projectdiscussioncomments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProjectdiscussioncomments($input: ProjectdiscussioncommentsInput!) {\n  create_projectdiscussioncomments(input: $input) {\n    id\n    discussion_id\n    discussion_type\n    parent\n    created\n    modified\n    content\n    staff_id\n    contact_id\n    fullname\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"discussion_id\": 0,\n        \"discussion_type\": \"Sample discussion_type\",\n        \"parent\": 0,\n        \"created\": \"2026-04-01\",\n        \"modified\": \"Sample modified\",\n        \"content\": \"Sample description for testing.\",\n        \"staff_id\": 1,\n        \"contact_id\": 0,\n        \"fullname\": \"Sample fullname\",\n        \"file_name\": \"Sample file_name\",\n        \"file_mime_type\": \"Sample file_mime_type\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Projectdiscussioncomments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProjectdiscussioncomments($id: ID!, $input: ProjectdiscussioncommentsInput!) {\n  update_projectdiscussioncomments(id: $id, input: $input) {\n    id\n    discussion_id\n    discussion_type\n    parent\n    created\n    modified\n    content\n    staff_id\n    contact_id\n    fullname\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"discussion_id\": 0,\n        \"discussion_type\": \"Sample discussion_type\",\n        \"parent\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Projectdiscussioncomments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProjectdiscussioncomments($id: ID!) {\n  delete_projectdiscussioncomments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Projectdiscussions",
                    "item": [
                        {
                            "name": "List Projectdiscussions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProjectdiscussionsList($limit: Int, $offset: Int) {\n  projectdiscussions(limit: $limit, offset: $offset) {\n    id\n    project_id\n    subject\n    description\n    show_to_customer\n    datecreated\n    last_activity\n    staff_id\n    contact_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Projectdiscussions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProjectdiscussions($input: ProjectdiscussionsInput!) {\n  create_projectdiscussions(input: $input) {\n    id\n    project_id\n    subject\n    description\n    show_to_customer\n    datecreated\n    last_activity\n    staff_id\n    contact_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"project_id\": 0,\n        \"subject\": \"Sample subject\",\n        \"description\": \"Sample description for testing.\",\n        \"show_to_customer\": 0,\n        \"staff_id\": 1,\n        \"contact_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Projectdiscussions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProjectdiscussions($id: ID!, $input: ProjectdiscussionsInput!) {\n  update_projectdiscussions(id: $id, input: $input) {\n    id\n    project_id\n    subject\n    description\n    show_to_customer\n    datecreated\n    last_activity\n    staff_id\n    contact_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"project_id\": 0,\n        \"subject\": \"Sample subject\",\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Projectdiscussions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProjectdiscussions($id: ID!) {\n  delete_projectdiscussions(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Projects",
                    "item": [
                        {
                            "name": "List Projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProjectsList($limit: Int, $offset: Int) {\n  projects(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    status\n    clientid\n    billing_type\n    start_date\n    deadline\n    project_created\n    date_finished\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProjects($input: ProjectsInput!) {\n  create_projects(input: $input) {\n    id\n    name\n    description\n    status\n    clientid\n    billing_type\n    start_date\n    deadline\n    project_created\n    date_finished\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"status\": 0,\n        \"clientid\": 1,\n        \"billing_type\": 1,\n        \"start_date\": \"2026-04-01\",\n        \"deadline\": \"2026-04-01\",\n        \"project_created\": \"2026-04-01\",\n        \"progress\": 0,\n        \"progress_from_tasks\": 0,\n        \"project_cost\": \"0\",\n        \"project_rate_per_hour\": \"0\",\n        \"estimated_hours\": \"0\",\n        \"contact_notification\": 0,\n        \"notify_contacts\": \"Sample notify_contacts\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProjects($id: ID!, $input: ProjectsInput!) {\n  update_projects(id: $id, input: $input) {\n    id\n    name\n    description\n    status\n    clientid\n    billing_type\n    start_date\n    deadline\n    project_created\n    date_finished\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"status\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Projects",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProjects($id: ID!) {\n  delete_projects(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Proposal comments",
                    "item": [
                        {
                            "name": "List Proposal comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProposal_commentsList($limit: Int, $offset: Int) {\n  proposal_comments(limit: $limit, offset: $offset) {\n    id\n    content\n    proposalid\n    staffid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Proposal comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProposal_comments($input: Proposal_commentsInput!) {\n  create_proposal_comments(input: $input) {\n    id\n    content\n    proposalid\n    staffid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"proposalid\": 0,\n        \"staffid\": 1,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Proposal comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProposal_comments($id: ID!, $input: Proposal_commentsInput!) {\n  update_proposal_comments(id: $id, input: $input) {\n    id\n    content\n    proposalid\n    staffid\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"proposalid\": 0,\n        \"staffid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Proposal comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProposal_comments($id: ID!) {\n  delete_proposal_comments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Proposals",
                    "item": [
                        {
                            "name": "List Proposals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetProposalsList($limit: Int, $offset: Int) {\n  proposals(limit: $limit, offset: $offset) {\n    id\n    subject\n    content\n    addedfrom\n    datecreated\n    total\n    subtotal\n    total_tax\n    adjustment\n    discount_percent\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Proposals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateProposals($input: ProposalsInput!) {\n  create_proposals(input: $input) {\n    id\n    subject\n    content\n    addedfrom\n    datecreated\n    total\n    subtotal\n    total_tax\n    adjustment\n    discount_percent\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"subject\": \"Sample subject\",\n        \"content\": \"Sample description for testing.\",\n        \"total\": \"0\",\n        \"subtotal\": \"0\",\n        \"total_tax\": \"0\",\n        \"adjustment\": \"0\",\n        \"discount_percent\": \"0\",\n        \"discount_total\": \"0\",\n        \"discount_type\": \"Sample discount_type\",\n        \"show_quantity_as\": 0,\n        \"currency\": 0,\n        \"open_till\": \"Sample open_till\",\n        \"date\": \"2026-04-01\",\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"assigned\": 0,\n        \"proposal_to\": \"Sample proposal_to\",\n        \"project_id\": 0,\n        \"country\": 0,\n        \"zip\": \"Sample zip\",\n        \"state\": \"Sample state\",\n        \"city\": \"Sample city\",\n        \"address\": \"Sample address\",\n        \"email\": \"demo@example.com\",\n        \"phone\": \"+1234567890\",\n        \"allow_comments\": 0,\n        \"status\": 0,\n        \"estimate_id\": 0,\n        \"invoice_id\": 0,\n        \"date_converted\": \"2026-04-01\",\n        \"pipeline_order\": 0,\n        \"is_expiry_notified\": 0,\n        \"acceptance_firstname\": \"Sample acceptance_firstname\",\n        \"acceptance_lastname\": \"Sample acceptance_lastname\",\n        \"acceptance_email\": \"demo@example.com\",\n        \"acceptance_date\": \"2026-04-01\",\n        \"acceptance_ip\": \"Sample acceptance_ip\",\n        \"signature\": \"Sample signature\",\n        \"short_link\": \"Sample short_link\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Proposals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateProposals($id: ID!, $input: ProposalsInput!) {\n  update_proposals(id: $id, input: $input) {\n    id\n    subject\n    content\n    addedfrom\n    datecreated\n    total\n    subtotal\n    total_tax\n    adjustment\n    discount_percent\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"subject\": \"Sample subject\",\n        \"content\": \"Sample description for testing.\",\n        \"total\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Proposals",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteProposals($id: ID!) {\n  delete_proposals(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Related items",
                    "item": [
                        {
                            "name": "List Related items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetRelated_itemsList($limit: Int, $offset: Int) {\n  related_items(limit: $limit, offset: $offset) {\n    id\n    rel_id\n    rel_type\n    item_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Related items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateRelated_items($input: Related_itemsInput!) {\n  create_related_items(input: $input) {\n    id\n    rel_id\n    rel_type\n    item_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"item_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Related items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateRelated_items($id: ID!, $input: Related_itemsInput!) {\n  update_related_items(id: $id, input: $input) {\n    id\n    rel_id\n    rel_type\n    item_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"item_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Related items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteRelated_items($id: ID!) {\n  delete_related_items(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Reminders",
                    "item": [
                        {
                            "name": "List Reminders",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetRemindersList($limit: Int, $offset: Int) {\n  reminders(limit: $limit, offset: $offset) {\n    id\n    description\n    date\n    isnotified\n    rel_id\n    staff\n    rel_type\n    notify_by_email\n    creator\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Reminders",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateReminders($input: RemindersInput!) {\n  create_reminders(input: $input) {\n    id\n    description\n    date\n    isnotified\n    rel_id\n    staff\n    rel_type\n    notify_by_email\n    creator\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"description\": \"Sample description for testing.\",\n        \"date\": \"2026-04-01\",\n        \"isnotified\": 0,\n        \"rel_id\": 0,\n        \"staff\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"notify_by_email\": 0,\n        \"creator\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Reminders",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateReminders($id: ID!, $input: RemindersInput!) {\n  update_reminders(id: $id, input: $input) {\n    id\n    description\n    date\n    isnotified\n    rel_id\n    staff\n    rel_type\n    notify_by_email\n    creator\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"description\": \"Sample description for testing.\",\n        \"date\": \"2026-04-01\",\n        \"isnotified\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Reminders",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteReminders($id: ID!) {\n  delete_reminders(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Sales activity",
                    "item": [
                        {
                            "name": "List Sales activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetSales_activityList($limit: Int, $offset: Int) {\n  sales_activity(limit: $limit, offset: $offset) {\n    id\n    rel_type\n    rel_id\n    description\n    additional_data\n    staffid\n    full_name\n    date\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Sales activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateSales_activity($input: Sales_activityInput!) {\n  create_sales_activity(input: $input) {\n    id\n    rel_type\n    rel_id\n    description\n    additional_data\n    staffid\n    full_name\n    date\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_type\": \"Sample rel_type\",\n        \"rel_id\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"additional_data\": \"Sample additional_data\",\n        \"staffid\": 1,\n        \"full_name\": \"Sample full_name\",\n        \"date\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Sales activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateSales_activity($id: ID!, $input: Sales_activityInput!) {\n  update_sales_activity(id: $id, input: $input) {\n    id\n    rel_type\n    rel_id\n    description\n    additional_data\n    staffid\n    full_name\n    date\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_type\": \"Sample rel_type\",\n        \"rel_id\": 0,\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Sales activity",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteSales_activity($id: ID!) {\n  delete_sales_activity(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Scheduled emails",
                    "item": [
                        {
                            "name": "List Scheduled emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetScheduled_emailsList($limit: Int, $offset: Int) {\n  scheduled_emails(limit: $limit, offset: $offset) {\n    id\n    rel_id\n    rel_type\n    scheduled_at\n    contacts\n    cc\n    attach_pdf\n    template\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Scheduled emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateScheduled_emails($input: Scheduled_emailsInput!) {\n  create_scheduled_emails(input: $input) {\n    id\n    rel_id\n    rel_type\n    scheduled_at\n    contacts\n    cc\n    attach_pdf\n    template\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"scheduled_at\": \"Sample scheduled_at\",\n        \"contacts\": \"Sample contacts\",\n        \"cc\": \"Sample cc\",\n        \"attach_pdf\": 0,\n        \"template\": \"Sample template\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Scheduled emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateScheduled_emails($id: ID!, $input: Scheduled_emailsInput!) {\n  update_scheduled_emails(id: $id, input: $input) {\n    id\n    rel_id\n    rel_type\n    scheduled_at\n    contacts\n    cc\n    attach_pdf\n    template\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"scheduled_at\": \"Sample scheduled_at\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Scheduled emails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteScheduled_emails($id: ID!) {\n  delete_scheduled_emails(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Services",
                    "item": [
                        {
                            "name": "List Services",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetServicesList($limit: Int, $offset: Int) {\n  services(limit: $limit, offset: $offset) {\n    serviceid\n    name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Services",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateServices($input: ServicesInput!) {\n  create_services(input: $input) {\n    serviceid\n    name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"serviceid\": 0,\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Services",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateServices($id: ID!, $input: ServicesInput!) {\n  update_services(id: $id, input: $input) {\n    serviceid\n    name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"serviceid\": 0,\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Services",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteServices($id: ID!) {\n  delete_services(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Sessions",
                    "item": [
                        {
                            "name": "List Sessions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetSessionsList($limit: Int, $offset: Int) {\n  sessions(limit: $limit, offset: $offset) {\n    id\n    ip_address\n    timestamp\n    data\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Sessions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateSessions($input: SessionsInput!) {\n  create_sessions(input: $input) {\n    id\n    ip_address\n    timestamp\n    data\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"ip_address\": \"Sample ip_address\",\n        \"timestamp\": 0,\n        \"data\": \"Sample data\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Sessions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateSessions($id: ID!, $input: SessionsInput!) {\n  update_sessions(id: $id, input: $input) {\n    id\n    ip_address\n    timestamp\n    data\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"ip_address\": \"Sample ip_address\",\n        \"timestamp\": 0,\n        \"data\": \"Sample data\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Sessions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteSessions($id: ID!) {\n  delete_sessions(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Shared customer files",
                    "item": [
                        {
                            "name": "List Shared customer files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetShared_customer_filesList($limit: Int, $offset: Int) {\n  shared_customer_files(limit: $limit, offset: $offset) {\n    file_id\n    contact_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Shared customer files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateShared_customer_files($input: Shared_customer_filesInput!) {\n  create_shared_customer_files(input: $input) {\n    file_id\n    contact_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"file_id\": 0,\n        \"contact_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Shared customer files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateShared_customer_files($id: ID!, $input: Shared_customer_filesInput!) {\n  update_shared_customer_files(id: $id, input: $input) {\n    file_id\n    contact_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"file_id\": 0,\n        \"contact_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Shared customer files",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteShared_customer_files($id: ID!) {\n  delete_shared_customer_files(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Spam filters",
                    "item": [
                        {
                            "name": "List Spam filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetSpam_filtersList($limit: Int, $offset: Int) {\n  spam_filters(limit: $limit, offset: $offset) {\n    id\n    type\n    rel_type\n    value\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Spam filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateSpam_filters($input: Spam_filtersInput!) {\n  create_spam_filters(input: $input) {\n    id\n    type\n    rel_type\n    value\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"type\": \"Sample type\",\n        \"rel_type\": \"Sample rel_type\",\n        \"value\": \"Sample value\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Spam filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateSpam_filters($id: ID!, $input: Spam_filtersInput!) {\n  update_spam_filters(id: $id, input: $input) {\n    id\n    type\n    rel_type\n    value\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"type\": \"Sample type\",\n        \"rel_type\": \"Sample rel_type\",\n        \"value\": \"Sample value\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Spam filters",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteSpam_filters($id: ID!) {\n  delete_spam_filters(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Staff",
                    "item": [
                        {
                            "name": "List Staff",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetStaffList($limit: Int, $offset: Int) {\n  staff(limit: $limit, offset: $offset) {\n    staffid\n    email\n    firstname\n    lastname\n    facebook\n    linkedin\n    phonenumber\n    skype\n    datecreated\n    profile_image\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Staff",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateStaff($input: StaffInput!) {\n  create_staff(input: $input) {\n    staffid\n    email\n    firstname\n    lastname\n    facebook\n    linkedin\n    phonenumber\n    skype\n    datecreated\n    profile_image\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"staffid\": 1,\n        \"email\": \"demo@example.com\",\n        \"firstname\": \"Sample firstname\",\n        \"lastname\": \"Sample lastname\",\n        \"facebook\": \"Sample facebook\",\n        \"linkedin\": \"Sample linkedin\",\n        \"phonenumber\": \"+1234567890\",\n        \"skype\": \"Sample skype\",\n        \"profile_image\": \"Sample profile_image\",\n        \"last_password_change\": \"Sample last_password_change\",\n        \"new_pass_key\": \"Sample new_pass_key\",\n        \"new_pass_key_requested\": \"Sample new_pass_key_requested\",\n        \"admin\": 0,\n        \"role\": 0,\n        \"active\": 0,\n        \"default_language\": \"Sample default_language\",\n        \"direction\": \"Sample direction\",\n        \"media_path_slug\": \"Sample media_path_slug\",\n        \"is_not_staff\": 0,\n        \"hourly_rate\": \"0\",\n        \"two_factor_auth_enabled\": 0,\n        \"two_factor_auth_code\": \"Sample two_factor_auth_code\",\n        \"two_factor_auth_code_requested\": \"Sample two_factor_auth_code_requested\",\n        \"email_signature\": \"demo@example.com\",\n        \"google_auth_secret\": \"Sample google_auth_secret\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Staff",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateStaff($id: ID!, $input: StaffInput!) {\n  update_staff(id: $id, input: $input) {\n    staffid\n    email\n    firstname\n    lastname\n    facebook\n    linkedin\n    phonenumber\n    skype\n    datecreated\n    profile_image\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"staffid\": 1,\n        \"email\": \"demo@example.com\",\n        \"firstname\": \"Sample firstname\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Staff",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteStaff($id: ID!) {\n  delete_staff(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Staff departments",
                    "item": [
                        {
                            "name": "List Staff departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetStaff_departmentsList($limit: Int, $offset: Int) {\n  staff_departments(limit: $limit, offset: $offset) {\n    staffdepartmentid\n    staffid\n    departmentid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Staff departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateStaff_departments($input: Staff_departmentsInput!) {\n  create_staff_departments(input: $input) {\n    staffdepartmentid\n    staffid\n    departmentid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"staffdepartmentid\": 0,\n        \"staffid\": 1,\n        \"departmentid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Staff departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateStaff_departments($id: ID!, $input: Staff_departmentsInput!) {\n  update_staff_departments(id: $id, input: $input) {\n    staffdepartmentid\n    staffid\n    departmentid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"staffdepartmentid\": 0,\n        \"staffid\": 1,\n        \"departmentid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Staff departments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteStaff_departments($id: ID!) {\n  delete_staff_departments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Staff permissions",
                    "item": [
                        {
                            "name": "List Staff permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetStaff_permissionsList($limit: Int, $offset: Int) {\n  staff_permissions(limit: $limit, offset: $offset) {\n    staff_id\n    feature\n    capability\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Staff permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateStaff_permissions($input: Staff_permissionsInput!) {\n  create_staff_permissions(input: $input) {\n    staff_id\n    feature\n    capability\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"staff_id\": 1,\n        \"feature\": \"Sample feature\",\n        \"capability\": \"Sample capability\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Staff permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateStaff_permissions($id: ID!, $input: Staff_permissionsInput!) {\n  update_staff_permissions(id: $id, input: $input) {\n    staff_id\n    feature\n    capability\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"staff_id\": 1,\n        \"feature\": \"Sample feature\",\n        \"capability\": \"Sample capability\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Staff permissions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteStaff_permissions($id: ID!) {\n  delete_staff_permissions(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Roles",
                    "item": [
                        {
                            "name": "List Roles",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetRolesList($limit: Int, $offset: Int) {\n  roles(limit: $limit, offset: $offset) {\n    roleid\n    name\n    permissions\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Roles",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateRoles($input: RolesInput!) {\n  create_roles(input: $input) {\n    roleid\n    name\n    permissions\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"roleid\": 0,\n        \"name\": \"Sample name\",\n        \"permissions\": \"Sample permissions\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Roles",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateRoles($id: ID!, $input: RolesInput!) {\n  update_roles(id: $id, input: $input) {\n    roleid\n    name\n    permissions\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"roleid\": 0,\n        \"name\": \"Sample name\",\n        \"permissions\": \"Sample permissions\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Roles",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteRoles($id: ID!) {\n  delete_roles(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Subscriptions",
                    "item": [
                        {
                            "name": "List Subscriptions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetSubscriptionsList($limit: Int, $offset: Int) {\n  subscriptions(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    description_in_item\n    clientid\n    date\n    terms\n    currency\n    tax_id\n    stripe_tax_id\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Subscriptions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateSubscriptions($input: SubscriptionsInput!) {\n  create_subscriptions(input: $input) {\n    id\n    name\n    description\n    description_in_item\n    clientid\n    date\n    terms\n    currency\n    tax_id\n    stripe_tax_id\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"description_in_item\": 0,\n        \"clientid\": 1,\n        \"date\": \"2026-04-01\",\n        \"terms\": \"Sample terms\",\n        \"currency\": 0,\n        \"tax_id\": 0,\n        \"stripe_tax_id\": \"Sample stripe_tax_id\",\n        \"tax_id_2\": 0,\n        \"stripe_tax_id_2\": \"Sample stripe_tax_id_2\",\n        \"stripe_plan_id\": \"Sample stripe_plan_id\",\n        \"stripe_subscription_id\": \"Sample stripe_subscription_id\",\n        \"next_billing_cycle\": 0,\n        \"ends_at\": 0,\n        \"status\": 0,\n        \"quantity\": 0,\n        \"project_id\": 0,\n        \"created\": \"2026-04-01\",\n        \"created_from\": \"2026-04-01\",\n        \"date_subscribed\": \"2026-04-01\",\n        \"in_test_environment\": 0,\n        \"last_sent_at\": \"Sample last_sent_at\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Subscriptions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateSubscriptions($id: ID!, $input: SubscriptionsInput!) {\n  update_subscriptions(id: $id, input: $input) {\n    id\n    name\n    description\n    description_in_item\n    clientid\n    date\n    terms\n    currency\n    tax_id\n    stripe_tax_id\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"description_in_item\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Subscriptions",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteSubscriptions($id: ID!) {\n  delete_subscriptions(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Taggables",
                    "item": [
                        {
                            "name": "List Taggables",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTaggablesList($limit: Int, $offset: Int) {\n  taggables(limit: $limit, offset: $offset) {\n    rel_id\n    rel_type\n    tag_id\n    tag_order\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Taggables",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTaggables($input: TaggablesInput!) {\n  create_taggables(input: $input) {\n    rel_id\n    rel_type\n    tag_id\n    tag_order\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"tag_id\": 0,\n        \"tag_order\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Taggables",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTaggables($id: ID!, $input: TaggablesInput!) {\n  update_taggables(id: $id, input: $input) {\n    rel_id\n    rel_type\n    tag_id\n    tag_order\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"tag_id\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Taggables",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTaggables($id: ID!) {\n  delete_taggables(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tags",
                    "item": [
                        {
                            "name": "List Tags",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTagsList($limit: Int, $offset: Int) {\n  tags(limit: $limit, offset: $offset) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tags",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTags($input: TagsInput!) {\n  create_tags(input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tags",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTags($id: ID!, $input: TagsInput!) {\n  update_tags(id: $id, input: $input) {\n    id\n    name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tags",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTags($id: ID!) {\n  delete_tags(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Task assigned",
                    "item": [
                        {
                            "name": "List Task assigned",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTask_assignedList($limit: Int, $offset: Int) {\n  task_assigned(limit: $limit, offset: $offset) {\n    id\n    staffid\n    taskid\n    assigned_from\n    is_assigned_from_contact\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Task assigned",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTask_assigned($input: Task_assignedInput!) {\n  create_task_assigned(input: $input) {\n    id\n    staffid\n    taskid\n    assigned_from\n    is_assigned_from_contact\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"staffid\": 1,\n        \"taskid\": 0,\n        \"assigned_from\": 0,\n        \"is_assigned_from_contact\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Task assigned",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTask_assigned($id: ID!, $input: Task_assignedInput!) {\n  update_task_assigned(id: $id, input: $input) {\n    id\n    staffid\n    taskid\n    assigned_from\n    is_assigned_from_contact\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"staffid\": 1,\n        \"taskid\": 0,\n        \"assigned_from\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Task assigned",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTask_assigned($id: ID!) {\n  delete_task_assigned(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Task checklist items",
                    "item": [
                        {
                            "name": "List Task checklist items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTask_checklist_itemsList($limit: Int, $offset: Int) {\n  task_checklist_items(limit: $limit, offset: $offset) {\n    id\n    taskid\n    description\n    finished\n    dateadded\n    addedfrom\n    finished_from\n    list_order\n    assigned\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Task checklist items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTask_checklist_items($input: Task_checklist_itemsInput!) {\n  create_task_checklist_items(input: $input) {\n    id\n    taskid\n    description\n    finished\n    dateadded\n    addedfrom\n    finished_from\n    list_order\n    assigned\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"taskid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"finished\": 0,\n        \"dateadded\": \"2026-04-01\",\n        \"finished_from\": 0,\n        \"list_order\": 0,\n        \"assigned\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Task checklist items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTask_checklist_items($id: ID!, $input: Task_checklist_itemsInput!) {\n  update_task_checklist_items(id: $id, input: $input) {\n    id\n    taskid\n    description\n    finished\n    dateadded\n    addedfrom\n    finished_from\n    list_order\n    assigned\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"taskid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"finished\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Task checklist items",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTask_checklist_items($id: ID!) {\n  delete_task_checklist_items(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Task comments",
                    "item": [
                        {
                            "name": "List Task comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTask_commentsList($limit: Int, $offset: Int) {\n  task_comments(limit: $limit, offset: $offset) {\n    id\n    content\n    taskid\n    staffid\n    contact_id\n    file_id\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Task comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTask_comments($input: Task_commentsInput!) {\n  create_task_comments(input: $input) {\n    id\n    content\n    taskid\n    staffid\n    contact_id\n    file_id\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"taskid\": 0,\n        \"staffid\": 1,\n        \"contact_id\": 0,\n        \"file_id\": 0,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Task comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTask_comments($id: ID!, $input: Task_commentsInput!) {\n  update_task_comments(id: $id, input: $input) {\n    id\n    content\n    taskid\n    staffid\n    contact_id\n    file_id\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"content\": \"Sample description for testing.\",\n        \"taskid\": 0,\n        \"staffid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Task comments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTask_comments($id: ID!) {\n  delete_task_comments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Task followers",
                    "item": [
                        {
                            "name": "List Task followers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTask_followersList($limit: Int, $offset: Int) {\n  task_followers(limit: $limit, offset: $offset) {\n    id\n    staffid\n    taskid\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Task followers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTask_followers($input: Task_followersInput!) {\n  create_task_followers(input: $input) {\n    id\n    staffid\n    taskid\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"staffid\": 1,\n        \"taskid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Task followers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTask_followers($id: ID!, $input: Task_followersInput!) {\n  update_task_followers(id: $id, input: $input) {\n    id\n    staffid\n    taskid\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"staffid\": 1,\n        \"taskid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Task followers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTask_followers($id: ID!) {\n  delete_task_followers(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Taskstimers",
                    "item": [
                        {
                            "name": "List Taskstimers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTaskstimersList($limit: Int, $offset: Int) {\n  taskstimers(limit: $limit, offset: $offset) {\n    id\n    task_id\n    start_time\n    end_time\n    staff_id\n    hourly_rate\n    note\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Taskstimers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTaskstimers($input: TaskstimersInput!) {\n  create_taskstimers(input: $input) {\n    id\n    task_id\n    start_time\n    end_time\n    staff_id\n    hourly_rate\n    note\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"task_id\": 0,\n        \"start_time\": \"Sample start_time\",\n        \"end_time\": \"Sample end_time\",\n        \"staff_id\": 1,\n        \"hourly_rate\": \"0\",\n        \"note\": \"Sample note\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Taskstimers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTaskstimers($id: ID!, $input: TaskstimersInput!) {\n  update_taskstimers(id: $id, input: $input) {\n    id\n    task_id\n    start_time\n    end_time\n    staff_id\n    hourly_rate\n    note\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"task_id\": 0,\n        \"start_time\": \"Sample start_time\",\n        \"end_time\": \"Sample end_time\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Taskstimers",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTaskstimers($id: ID!) {\n  delete_taskstimers(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tasks",
                    "item": [
                        {
                            "name": "List Tasks",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTasksList($limit: Int, $offset: Int) {\n  tasks(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    priority\n    dateadded\n    startdate\n    duedate\n    datefinished\n    addedfrom\n    is_added_from_contact\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tasks",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTasks($input: TasksInput!) {\n  create_tasks(input: $input) {\n    id\n    name\n    description\n    priority\n    dateadded\n    startdate\n    duedate\n    datefinished\n    addedfrom\n    is_added_from_contact\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"priority\": 0,\n        \"dateadded\": \"2026-04-01\",\n        \"startdate\": \"2026-04-01\",\n        \"duedate\": \"2026-04-01\",\n        \"datefinished\": \"2026-04-01\",\n        \"is_added_from_contact\": 0,\n        \"status\": 0,\n        \"recurring_type\": \"Sample recurring_type\",\n        \"repeat_every\": 0,\n        \"recurring\": 0,\n        \"is_recurring_from\": 0,\n        \"cycles\": 0,\n        \"total_cycles\": 0,\n        \"custom_recurring\": 0,\n        \"last_recurring_date\": \"2026-04-01\",\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"is_public\": 0,\n        \"billable\": 0,\n        \"billed\": 0,\n        \"invoice_id\": 0,\n        \"hourly_rate\": \"0\",\n        \"milestone\": 0,\n        \"kanban_order\": 0,\n        \"milestone_order\": 0,\n        \"visible_to_client\": 0,\n        \"deadline_notified\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tasks",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTasks($id: ID!, $input: TasksInput!) {\n  update_tasks(id: $id, input: $input) {\n    id\n    name\n    description\n    priority\n    dateadded\n    startdate\n    duedate\n    datefinished\n    addedfrom\n    is_added_from_contact\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"priority\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tasks",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTasks($id: ID!) {\n  delete_tasks(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tasks checklist templates",
                    "item": [
                        {
                            "name": "List Tasks checklist templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTasks_checklist_templatesList($limit: Int, $offset: Int) {\n  tasks_checklist_templates(limit: $limit, offset: $offset) {\n    id\n    description\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tasks checklist templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTasks_checklist_templates($input: Tasks_checklist_templatesInput!) {\n  create_tasks_checklist_templates(input: $input) {\n    id\n    description\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tasks checklist templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTasks_checklist_templates($id: ID!, $input: Tasks_checklist_templatesInput!) {\n  update_tasks_checklist_templates(id: $id, input: $input) {\n    id\n    description\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"description\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tasks checklist templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTasks_checklist_templates($id: ID!) {\n  delete_tasks_checklist_templates(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Taxes",
                    "item": [
                        {
                            "name": "List Taxes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTaxesList($limit: Int, $offset: Int) {\n  taxes(limit: $limit, offset: $offset) {\n    id\n    name\n    taxrate\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Taxes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTaxes($input: TaxesInput!) {\n  create_taxes(input: $input) {\n    id\n    name\n    taxrate\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"taxrate\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Taxes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTaxes($id: ID!, $input: TaxesInput!) {\n  update_taxes(id: $id, input: $input) {\n    id\n    name\n    taxrate\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"taxrate\": \"0\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Taxes",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTaxes($id: ID!) {\n  delete_taxes(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Templates",
                    "item": [
                        {
                            "name": "List Templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTemplatesList($limit: Int, $offset: Int) {\n  templates(limit: $limit, offset: $offset) {\n    id\n    name\n    type\n    addedfrom\n    content\n    content_type\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTemplates($input: TemplatesInput!) {\n  create_templates(input: $input) {\n    id\n    name\n    type\n    addedfrom\n    content\n    content_type\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"type\": \"Sample type\",\n        \"content\": \"Sample description for testing.\",\n        \"content_type\": \"Sample content_type\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTemplates($id: ID!, $input: TemplatesInput!) {\n  update_templates(id: $id, input: $input) {\n    id\n    name\n    type\n    addedfrom\n    content\n    content_type\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"type\": \"Sample type\",\n        \"content\": \"Sample description for testing.\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Templates",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTemplates($id: ID!) {\n  delete_templates(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Ticket attachments",
                    "item": [
                        {
                            "name": "List Ticket attachments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTicket_attachmentsList($limit: Int, $offset: Int) {\n  ticket_attachments(limit: $limit, offset: $offset) {\n    id\n    ticketid\n    replyid\n    file_name\n    filetype\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Ticket attachments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTicket_attachments($input: Ticket_attachmentsInput!) {\n  create_ticket_attachments(input: $input) {\n    id\n    ticketid\n    replyid\n    file_name\n    filetype\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"ticketid\": 0,\n        \"replyid\": 0,\n        \"file_name\": \"Sample file_name\",\n        \"filetype\": \"Sample filetype\",\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Ticket attachments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTicket_attachments($id: ID!, $input: Ticket_attachmentsInput!) {\n  update_ticket_attachments(id: $id, input: $input) {\n    id\n    ticketid\n    replyid\n    file_name\n    filetype\n    dateadded\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"ticketid\": 0,\n        \"replyid\": 0,\n        \"file_name\": \"Sample file_name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Ticket attachments",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTicket_attachments($id: ID!) {\n  delete_ticket_attachments(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Ticket replies",
                    "item": [
                        {
                            "name": "List Ticket replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTicket_repliesList($limit: Int, $offset: Int) {\n  ticket_replies(limit: $limit, offset: $offset) {\n    id\n    ticketid\n    userid\n    contactid\n    name\n    email\n    date\n    message\n    attachment\n    admin\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Ticket replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTicket_replies($input: Ticket_repliesInput!) {\n  create_ticket_replies(input: $input) {\n    id\n    ticketid\n    userid\n    contactid\n    name\n    email\n    date\n    message\n    attachment\n    admin\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"ticketid\": 0,\n        \"userid\": 1,\n        \"contactid\": 0,\n        \"name\": \"Sample name\",\n        \"email\": \"demo@example.com\",\n        \"date\": \"2026-04-01\",\n        \"message\": \"Sample message\",\n        \"attachment\": 0,\n        \"admin\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Ticket replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTicket_replies($id: ID!, $input: Ticket_repliesInput!) {\n  update_ticket_replies(id: $id, input: $input) {\n    id\n    ticketid\n    userid\n    contactid\n    name\n    email\n    date\n    message\n    attachment\n    admin\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"ticketid\": 0,\n        \"userid\": 1,\n        \"contactid\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Ticket replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTicket_replies($id: ID!) {\n  delete_ticket_replies(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tickets",
                    "item": [
                        {
                            "name": "List Tickets",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTicketsList($limit: Int, $offset: Int) {\n  tickets(limit: $limit, offset: $offset) {\n    ticketid\n    adminreplying\n    userid\n    contactid\n    merged_ticket_id\n    email\n    name\n    department\n    priority\n    status\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tickets",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTickets($input: TicketsInput!) {\n  create_tickets(input: $input) {\n    ticketid\n    adminreplying\n    userid\n    contactid\n    merged_ticket_id\n    email\n    name\n    department\n    priority\n    status\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"ticketid\": 0,\n        \"adminreplying\": 0,\n        \"userid\": 1,\n        \"contactid\": 0,\n        \"merged_ticket_id\": 0,\n        \"email\": \"demo@example.com\",\n        \"name\": \"Sample name\",\n        \"department\": 0,\n        \"priority\": 0,\n        \"status\": 0,\n        \"service\": 0,\n        \"ticketkey\": \"Sample ticketkey\",\n        \"subject\": \"Sample subject\",\n        \"message\": \"Sample message\",\n        \"admin\": 0,\n        \"date\": \"2026-04-01\",\n        \"project_id\": 0,\n        \"lastreply\": \"Sample lastreply\",\n        \"clientread\": 0,\n        \"adminread\": 0,\n        \"assigned\": 0,\n        \"staff_id_replying\": 0,\n        \"cc\": \"Sample cc\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tickets",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTickets($id: ID!, $input: TicketsInput!) {\n  update_tickets(id: $id, input: $input) {\n    ticketid\n    adminreplying\n    userid\n    contactid\n    merged_ticket_id\n    email\n    name\n    department\n    priority\n    status\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"ticketid\": 0,\n        \"adminreplying\": 0,\n        \"userid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tickets",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTickets($id: ID!) {\n  delete_tickets(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tickets pipe log",
                    "item": [
                        {
                            "name": "List Tickets pipe log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTickets_pipe_logList($limit: Int, $offset: Int) {\n  tickets_pipe_log(limit: $limit, offset: $offset) {\n    id\n    date\n    email_to\n    name\n    subject\n    message\n    email\n    status\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tickets pipe log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTickets_pipe_log($input: Tickets_pipe_logInput!) {\n  create_tickets_pipe_log(input: $input) {\n    id\n    date\n    email_to\n    name\n    subject\n    message\n    email\n    status\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"date\": \"2026-04-01\",\n        \"email_to\": \"demo@example.com\",\n        \"name\": \"Sample name\",\n        \"subject\": \"Sample subject\",\n        \"message\": \"Sample message\",\n        \"email\": \"demo@example.com\",\n        \"status\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tickets pipe log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTickets_pipe_log($id: ID!, $input: Tickets_pipe_logInput!) {\n  update_tickets_pipe_log(id: $id, input: $input) {\n    id\n    date\n    email_to\n    name\n    subject\n    message\n    email\n    status\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"date\": \"2026-04-01\",\n        \"email_to\": \"demo@example.com\",\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tickets pipe log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTickets_pipe_log($id: ID!) {\n  delete_tickets_pipe_log(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tickets predefined replies",
                    "item": [
                        {
                            "name": "List Tickets predefined replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTickets_predefined_repliesList($limit: Int, $offset: Int) {\n  tickets_predefined_replies(limit: $limit, offset: $offset) {\n    id\n    name\n    message\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tickets predefined replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTickets_predefined_replies($input: Tickets_predefined_repliesInput!) {\n  create_tickets_predefined_replies(input: $input) {\n    id\n    name\n    message\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"message\": \"Sample message\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tickets predefined replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTickets_predefined_replies($id: ID!, $input: Tickets_predefined_repliesInput!) {\n  update_tickets_predefined_replies(id: $id, input: $input) {\n    id\n    name\n    message\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"message\": \"Sample message\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tickets predefined replies",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTickets_predefined_replies($id: ID!) {\n  delete_tickets_predefined_replies(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tickets priorities",
                    "item": [
                        {
                            "name": "List Tickets priorities",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTickets_prioritiesList($limit: Int, $offset: Int) {\n  tickets_priorities(limit: $limit, offset: $offset) {\n    priorityid\n    name\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tickets priorities",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTickets_priorities($input: Tickets_prioritiesInput!) {\n  create_tickets_priorities(input: $input) {\n    priorityid\n    name\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"priorityid\": 0,\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tickets priorities",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTickets_priorities($id: ID!, $input: Tickets_prioritiesInput!) {\n  update_tickets_priorities(id: $id, input: $input) {\n    priorityid\n    name\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"priorityid\": 0,\n        \"name\": \"Sample name\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tickets priorities",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTickets_priorities($id: ID!) {\n  delete_tickets_priorities(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tickets status",
                    "item": [
                        {
                            "name": "List Tickets status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTickets_statusList($limit: Int, $offset: Int) {\n  tickets_status(limit: $limit, offset: $offset) {\n    ticketstatusid\n    name\n    isdefault\n    statuscolor\n    statusorder\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tickets status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTickets_status($input: Tickets_statusInput!) {\n  create_tickets_status(input: $input) {\n    ticketstatusid\n    name\n    isdefault\n    statuscolor\n    statusorder\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"ticketstatusid\": 0,\n        \"name\": \"Sample name\",\n        \"isdefault\": 0,\n        \"statuscolor\": \"Sample statuscolor\",\n        \"statusorder\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tickets status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTickets_status($id: ID!, $input: Tickets_statusInput!) {\n  update_tickets_status(id: $id, input: $input) {\n    ticketstatusid\n    name\n    isdefault\n    statuscolor\n    statusorder\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"ticketstatusid\": 0,\n        \"name\": \"Sample name\",\n        \"isdefault\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tickets status",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTickets_status($id: ID!) {\n  delete_tickets_status(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Todos",
                    "item": [
                        {
                            "name": "List Todos",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTodosList($limit: Int, $offset: Int) {\n  todos(limit: $limit, offset: $offset) {\n    todoid\n    description\n    staffid\n    dateadded\n    finished\n    datefinished\n    item_order\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Todos",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTodos($input: TodosInput!) {\n  create_todos(input: $input) {\n    todoid\n    description\n    staffid\n    dateadded\n    finished\n    datefinished\n    item_order\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"todoid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"staffid\": 1,\n        \"dateadded\": \"2026-04-01\",\n        \"finished\": 0,\n        \"datefinished\": \"2026-04-01\",\n        \"item_order\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Todos",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTodos($id: ID!, $input: TodosInput!) {\n  update_todos(id: $id, input: $input) {\n    todoid\n    description\n    staffid\n    dateadded\n    finished\n    datefinished\n    item_order\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"todoid\": 0,\n        \"description\": \"Sample description for testing.\",\n        \"staffid\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Todos",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTodos($id: ID!) {\n  delete_todos(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Tracked mails",
                    "item": [
                        {
                            "name": "List Tracked mails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTracked_mailsList($limit: Int, $offset: Int) {\n  tracked_mails(limit: $limit, offset: $offset) {\n    id\n    uid\n    rel_id\n    rel_type\n    date\n    email\n    opened\n    date_opened\n    subject\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Tracked mails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTracked_mails($input: Tracked_mailsInput!) {\n  create_tracked_mails(input: $input) {\n    id\n    uid\n    rel_id\n    rel_type\n    date\n    email\n    opened\n    date_opened\n    subject\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"uid\": \"Sample uid\",\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"date\": \"2026-04-01\",\n        \"email\": \"demo@example.com\",\n        \"opened\": 0,\n        \"date_opened\": \"2026-04-01\",\n        \"subject\": \"Sample subject\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Tracked mails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTracked_mails($id: ID!, $input: Tracked_mailsInput!) {\n  update_tracked_mails(id: $id, input: $input) {\n    id\n    uid\n    rel_id\n    rel_type\n    date\n    email\n    opened\n    date_opened\n    subject\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"uid\": \"Sample uid\",\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Tracked mails",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTracked_mails($id: ID!) {\n  delete_tracked_mails(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Twocheckout log",
                    "item": [
                        {
                            "name": "List Twocheckout log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetTwocheckout_logList($limit: Int, $offset: Int) {\n  twocheckout_log(limit: $limit, offset: $offset) {\n    id\n    reference\n    invoice_id\n    amount\n    created_at\n    attempt_reference\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Twocheckout log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateTwocheckout_log($input: Twocheckout_logInput!) {\n  create_twocheckout_log(input: $input) {\n    id\n    reference\n    invoice_id\n    amount\n    created_at\n    attempt_reference\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"reference\": \"Sample reference\",\n        \"invoice_id\": 0,\n        \"amount\": \"Sample amount\",\n        \"created_at\": \"2026-04-01\",\n        \"attempt_reference\": \"Sample attempt_reference\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Twocheckout log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateTwocheckout_log($id: ID!, $input: Twocheckout_logInput!) {\n  update_twocheckout_log(id: $id, input: $input) {\n    id\n    reference\n    invoice_id\n    amount\n    created_at\n    attempt_reference\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"reference\": \"Sample reference\",\n        \"invoice_id\": 0,\n        \"amount\": \"Sample amount\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Twocheckout log",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteTwocheckout_log($id: ID!) {\n  delete_twocheckout_log(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "User auto login",
                    "item": [
                        {
                            "name": "List User auto login",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetUser_auto_loginList($limit: Int, $offset: Int) {\n  user_auto_login(limit: $limit, offset: $offset) {\n    key_id\n    user_id\n    user_agent\n    last_ip\n    last_login\n    staff\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create User auto login",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateUser_auto_login($input: User_auto_loginInput!) {\n  create_user_auto_login(input: $input) {\n    key_id\n    user_id\n    user_agent\n    last_ip\n    last_login\n    staff\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"key_id\": \"Sample key_id\",\n        \"user_id\": 1,\n        \"user_agent\": \"Sample user_agent\",\n        \"staff\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update User auto login",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateUser_auto_login($id: ID!, $input: User_auto_loginInput!) {\n  update_user_auto_login(id: $id, input: $input) {\n    key_id\n    user_id\n    user_agent\n    last_ip\n    last_login\n    staff\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"key_id\": \"Sample key_id\",\n        \"user_id\": 1,\n        \"user_agent\": \"Sample user_agent\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete User auto login",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteUser_auto_login($id: ID!) {\n  delete_user_auto_login(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "User meta",
                    "item": [
                        {
                            "name": "List User meta",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetUser_metaList($limit: Int, $offset: Int) {\n  user_meta(limit: $limit, offset: $offset) {\n    umeta_id\n    staff_id\n    client_id\n    contact_id\n    meta_key\n    meta_value\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create User meta",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateUser_meta($input: User_metaInput!) {\n  create_user_meta(input: $input) {\n    umeta_id\n    staff_id\n    client_id\n    contact_id\n    meta_key\n    meta_value\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"umeta_id\": 0,\n        \"staff_id\": 1,\n        \"client_id\": 1,\n        \"contact_id\": 0,\n        \"meta_key\": \"Sample meta_key\",\n        \"meta_value\": \"Sample meta_value\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update User meta",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateUser_meta($id: ID!, $input: User_metaInput!) {\n  update_user_meta(id: $id, input: $input) {\n    umeta_id\n    staff_id\n    client_id\n    contact_id\n    meta_key\n    meta_value\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"umeta_id\": 0,\n        \"staff_id\": 1,\n        \"client_id\": 1\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete User meta",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteUser_meta($id: ID!) {\n  delete_user_meta(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Vault",
                    "item": [
                        {
                            "name": "List Vault",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetVaultList($limit: Int, $offset: Int) {\n  vault(limit: $limit, offset: $offset) {\n    id\n    customer_id\n    server_address\n    port\n    username\n    description\n    creator\n    creator_name\n    visibility\n    share_in_projects\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Vault",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateVault($input: VaultInput!) {\n  create_vault(input: $input) {\n    id\n    customer_id\n    server_address\n    port\n    username\n    description\n    creator\n    creator_name\n    visibility\n    share_in_projects\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"customer_id\": 0,\n        \"server_address\": \"Sample server_address\",\n        \"port\": 0,\n        \"username\": \"Sample username\",\n        \"description\": \"Sample description for testing.\",\n        \"creator\": 0,\n        \"creator_name\": \"Sample creator_name\",\n        \"visibility\": 0,\n        \"share_in_projects\": 0,\n        \"last_updated\": \"2026-04-01\",\n        \"last_updated_from\": \"2026-04-01\",\n        \"date_created\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Vault",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateVault($id: ID!, $input: VaultInput!) {\n  update_vault(id: $id, input: $input) {\n    id\n    customer_id\n    server_address\n    port\n    username\n    description\n    creator\n    creator_name\n    visibility\n    share_in_projects\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"customer_id\": 0,\n        \"server_address\": \"Sample server_address\",\n        \"port\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Vault",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteVault($id: ID!) {\n  delete_vault(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Views tracking",
                    "item": [
                        {
                            "name": "List Views tracking",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetViews_trackingList($limit: Int, $offset: Int) {\n  views_tracking(limit: $limit, offset: $offset) {\n    id\n    rel_id\n    rel_type\n    date\n    view_ip\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Views tracking",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateViews_tracking($input: Views_trackingInput!) {\n  create_views_tracking(input: $input) {\n    id\n    rel_id\n    rel_type\n    date\n    view_ip\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"date\": \"2026-04-01\",\n        \"view_ip\": \"Sample view_ip\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Views tracking",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateViews_tracking($id: ID!, $input: Views_trackingInput!) {\n  update_views_tracking(id: $id, input: $input) {\n    id\n    rel_id\n    rel_type\n    date\n    view_ip\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"rel_id\": 0,\n        \"rel_type\": \"Sample rel_type\",\n        \"date\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Views tracking",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteViews_tracking($id: ID!) {\n  delete_views_tracking(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Web to lead",
                    "item": [
                        {
                            "name": "List Web to lead",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetWeb_to_leadList($limit: Int, $offset: Int) {\n  web_to_lead(limit: $limit, offset: $offset) {\n    id\n    form_key\n    lead_source\n    lead_status\n    notify_lead_imported\n    notify_type\n    notify_ids\n    responsible\n    name\n    form_data\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Web to lead",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateWeb_to_lead($input: Web_to_leadInput!) {\n  create_web_to_lead(input: $input) {\n    id\n    form_key\n    lead_source\n    lead_status\n    notify_lead_imported\n    notify_type\n    notify_ids\n    responsible\n    name\n    form_data\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"form_key\": \"Sample form_key\",\n        \"lead_source\": 0,\n        \"lead_status\": 0,\n        \"notify_lead_imported\": 0,\n        \"notify_type\": \"Sample notify_type\",\n        \"notify_ids\": \"Sample notify_ids\",\n        \"responsible\": 0,\n        \"name\": \"Sample name\",\n        \"form_data\": \"Sample form_data\",\n        \"recaptcha\": 0,\n        \"submit_btn_name\": \"Sample submit_btn_name\",\n        \"submit_btn_text_color\": \"Sample submit_btn_text_color\",\n        \"submit_btn_bg_color\": \"Sample submit_btn_bg_color\",\n        \"success_submit_msg\": \"Sample success_submit_msg\",\n        \"submit_action\": 0,\n        \"lead_name_prefix\": \"Sample lead_name_prefix\",\n        \"submit_redirect_url\": \"Sample submit_redirect_url\",\n        \"language\": \"Sample language\",\n        \"allow_duplicate\": 0,\n        \"mark_public\": 0,\n        \"track_duplicate_field\": \"Sample track_duplicate_field\",\n        \"track_duplicate_field_and\": \"Sample track_duplicate_field_and\",\n        \"create_task_on_duplicate\": 0,\n        \"dateadded\": \"2026-04-01\"\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Web to lead",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateWeb_to_lead($id: ID!, $input: Web_to_leadInput!) {\n  update_web_to_lead(id: $id, input: $input) {\n    id\n    form_key\n    lead_source\n    lead_status\n    notify_lead_imported\n    notify_type\n    notify_ids\n    responsible\n    name\n    form_data\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"form_key\": \"Sample form_key\",\n        \"lead_source\": 0,\n        \"lead_status\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Web to lead",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteWeb_to_lead($id: ID!) {\n  delete_web_to_lead(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "Milestones",
                    "item": [
                        {
                            "name": "List Milestones",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "query GetMilestonesList($limit: Int, $offset: Int) {\n  milestones(limit: $limit, offset: $offset) {\n    id\n    name\n    description\n    description_visible_to_customer\n    start_date\n    due_date\n    project_id\n    color\n    milestone_order\n    datecreated\n  }\n}",
                                        "variables": "{\n    \"limit\": 10,\n    \"offset\": 0\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Create Milestones",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation CreateMilestones($input: MilestonesInput!) {\n  create_milestones(input: $input) {\n    id\n    name\n    description\n    description_visible_to_customer\n    start_date\n    due_date\n    project_id\n    color\n    milestone_order\n    datecreated\n  }\n}",
                                        "variables": "{\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"description_visible_to_customer\": 0,\n        \"start_date\": \"2026-04-01\",\n        \"due_date\": \"2026-04-01\",\n        \"project_id\": 0,\n        \"color\": \"Sample color\",\n        \"milestone_order\": 0,\n        \"hide_from_customer\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Update Milestones",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation UpdateMilestones($id: ID!, $input: MilestonesInput!) {\n  update_milestones(id: $id, input: $input) {\n    id\n    name\n    description\n    description_visible_to_customer\n    start_date\n    due_date\n    project_id\n    color\n    milestone_order\n    datecreated\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\",\n    \"input\": {\n        \"name\": \"Sample name\",\n        \"description\": \"Sample description for testing.\",\n        \"description_visible_to_customer\": 0\n    }\n}"
                                    }
                                }
                            }
                        },
                        {
                            "name": "Delete Milestones",
                            "request": {
                                "method": "POST",
                                "url": {
                                    "raw": "{{baseUrl}}/graphql",
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "path": [
                                        "graphql"
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Authorization",
                                        "value": "Bearer {{api_token}}",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "body": {
                                    "mode": "graphql",
                                    "graphql": {
                                        "query": "mutation DeleteMilestones($id: ID!) {\n  delete_milestones(id: $id) {\n    success\n    message\n    affected_rows\n  }\n}",
                                        "variables": "{\n    \"id\": \"1\"\n}"
                                    }
                                }
                            }
                        }
                    ]
                }
            ]
        }
    ]
}