{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/tl.haakdev.com"
        }
    ],
    "info": {
        "name": "TrackLab",
        "_postman_id": "405c95c8-6e48-421c-9d36-34166bdb1725",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Admin Management",
            "description": "\nAPIs for super admin operations",
            "item": [
                {
                    "name": "Add New User",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/user"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companyName\":\"New Company Ltd\",\"email\":\"user@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"password\":\"SecurePass123!\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\"}"
                        },
                        "description": "Create a new user and company (super admin only)."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"user@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"phoneNumbers\": [{ \"countryIsoCode\": \"US\", \"phoneNumber\": \"+1234567890\", \"isChecked\": true, \"isValid\": true }],\n    \"createdAt\": \"2024-01-20T12:00:00Z\",\n    \"updatedAt\": \"2024-01-20T12:00:00Z\",\n    \"defaultCompanySlug\": \"new-company-ltd\",\n    \"emailVerifiedAt\": null,\n    \"defaultCountryIsoCode\": \"US\",\n    \"defaultCountryEmoji\": \"\ud83c\uddfa\ud83c\uddf8\",\n    \"imgUrl\": \"https:\/\/www.gravatar.com\/avatar\/...\",\n    \"imgThumbUrl\": \"https:\/\/www.gravatar.com\/avatar\/...\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"email\": [\"The email has already been taken.\"],\n    \"companyName\": [\"The company name has already been taken.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication",
            "description": "\nAPIs for managing authentication sessions",
            "item": [
                {
                    "name": "Login user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"john@example.com\",\"password\":\"secret123!@#\",\"remember_me\":true}"
                        },
                        "description": "Authenticate a user and create a new session. This endpoint validates the user's\ncredentials and returns the authenticated user's details along with a session cookie.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"john@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"phoneNumbers\": [{ \"countryIsoCode\": \"GB\", \"phoneNumber\": \"+44...\", \"isChecked\": true, \"isValid\": true }],\n    \"createdAt\": \"2024-01-20T12:00:00Z\",\n    \"updatedAt\": \"2024-01-20T12:00:00Z\",\n    \"imgUrl\": \"https:\/\/example.com\/profiles\/john.jpg\",\n    \"imgThumbUrl\": \"https:\/\/example.com\/profiles\/john_thumb.jpg\",\n    \"defaultCompanySlug\": \"example-company\",\n    \"emailVerifiedAt\": \"2024-01-20T11:00:00Z\",\n    \"defaultCountryIsoCode\": \"GB\",\n    \"defaultCountryEmoji\": \"\ud83c\uddec\ud83c\udde7\"\n  }\n}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\": \"The provided credentials are incorrect.\",\"errors\": {\"email\": [\"These credentials do not match our records.\"]}}",
                            "name": "Invalid Credentials"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The provided credentials are incorrect.\",\n  \"errors\": {\n    \"email\": [\"These credentials do not match our records.\"]\n  }\n}",
                            "name": "Invalid Credentials"
                        },
                        {
                            "header": [],
                            "code": 429,
                            "body": "{\"message\": \"Too many login attempts. Please try again in 60 seconds.\",\"errors\": {\"email\": [\"Too many login attempts.\"]}}",
                            "name": "Too Many Attempts"
                        },
                        {
                            "header": [],
                            "code": 429,
                            "body": "{\n  \"message\": \"Too many login attempts. Please try again in 60 seconds.\",\n  \"errors\": {\n    \"email\": [\"Too many login attempts.\"]\n  }",
                            "name": "Too Many Attempts"
                        }
                    ]
                },
                {
                    "name": "Logout user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/logout"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Invalidate the current user's session."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"msg\":\"Logged out\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": "Unauthenticated"
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication > Token Management",
            "description": "",
            "item": [
                {
                    "name": "DELETE api\/v1\/logout\/everywhere",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logout\/everywhere",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/logout\/everywhere"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"Logged out everywhere - all tokens and sessions invalidated\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sanctum\/token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"SecurePass123!\",\"deviceName\":\"TrackLab Web\",\"abilities\":[\"deliveries:read\"],\"expiresIn\":1440,\"refreshExpiresIn\":10080}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"accessToken\":\"1|sanctum_abc\",\"refreshToken\":\"2|sanctum_xyz\",\"tokenType\":\"Bearer\",\"expiresIn\":900}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sanctum\/token\/refresh",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/refresh"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"refreshToken\":\"2|laravel_sanctum_abc123\",\"expiresIn\":1440,\"refreshExpiresIn\":10080}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"accessToken\":\"3|sanctum_new\",\"refreshToken\":\"4|sanctum_new_refresh\",\"tokenType\":\"Bearer\",\"expiresIn\":900}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/current",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/current"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"Current token revoked successfully\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/refresh",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/refresh"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"refreshToken\":\"2|laravel_sanctum_abc123\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"Refresh token revoked successfully\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/all"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"All other tokens revoked successfully\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sanctum\/tokens",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/tokens"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"tokens\":[{\"tokenUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"name\":\"TrackLab Web\",\"abilities\":[\"*\"],\"lastUsedAt\":\"2024-01-20T12:00:00Z\",\"createdAt\":\"2024-01-19T12:00:00Z\",\"expiresAt\":\"2024-02-18T12:00:00Z\",\"isRefreshToken\":false}]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/{tokenUuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/:tokenUuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/:tokenUuid",
                            "variable": [
                                {
                                    "id": "tokenUuid",
                                    "key": "tokenUuid",
                                    "value": "45cf97dd-fc98-3ed2-b8f5-15142c2d3fb0",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tokenUuid\":\"85263176-4667-33ec-b4ba-37718ea52cc1\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"Token revoked.\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Company - Data Retention",
            "description": "",
            "item": [
                {
                    "name": "List all effective retention policies for the authenticated company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/data-retention\/policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/data-retention\/policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a single effective retention policy for the authenticated company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/data-retention\/policies\/:dataRetentionDataType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/data-retention\/policies\/:dataRetentionDataType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "dataRetentionDataType_slug",
                                    "key": "dataRetentionDataType_slug",
                                    "value": "collector-measurements",
                                    "description": "The slug of the dataRetentionDataType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Company Activity Logs",
            "description": "",
            "item": [
                {
                    "name": "List activity logs for the company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/activity-logs",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "farm-section",
                                    "description": "Filter by event category. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "update",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "Farm",
                                    "description": "Filter by affected model type (short name, e.g., \"Farm\", \"Collector\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of a company user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "collector",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "created_at",
                                    "description": "Field to sort by (created_at, event, description, log_name).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/activity-logs?page=1&perPage=25&event=farm-section&action=update&logName=default&subjectType=Farm&causerUuid=550e8400-e29b-41d4-a716-446655440000&fromDate=2026-01-01&toDate=2026-12-31&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=collector&sortBy=created_at&sortOrder=desc",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "eos",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns paginated activity logs for actions performed by users\nwithin the authenticated company."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get available filter options for company activity logs.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/activity-logs\/filter-options",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "farm-section",
                                    "description": "Filter by event category. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "update",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "Farm",
                                    "description": "Filter by affected model type (short name, e.g., \"Farm\", \"Collector\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of a company user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "collector",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "created_at",
                                    "description": "Field to sort by (created_at, event, description, log_name).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/activity-logs\/filter-options?page=1&perPage=25&event=farm-section&action=update&logName=default&subjectType=Farm&causerUuid=550e8400-e29b-41d4-a716-446655440000&fromDate=2026-01-01&toDate=2026-12-31&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=collector&sortBy=created_at&sortOrder=desc",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "maxime",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns distinct values for events, log names, and subject types\nto populate filter dropdowns in the UI. Note: These are global values,\nnot filtered by company scope."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Export activity logs for the company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/activity-logs\/export",
                            "query": [
                                {
                                    "key": "startDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "endDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to startDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "sa.device-model-type",
                                    "description": "Filter by event category (e.g., \"sa.device-model-type\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "create",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "User",
                                    "description": "Filter by affected model type (short name, e.g., \"User\", \"Farm\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "firmware",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "format",
                                    "value": "csv",
                                    "description": "Export format: csv or json (default: json).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/activity-logs\/export?startDate=2026-01-01&endDate=2026-12-31&event=sa.device-model-type&action=create&logName=default&subjectType=User&causerUuid=550e8400-e29b-41d4-a716-446655440000&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=firmware&format=csv",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "eum",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Exports activity logs with optional filtering. Supports CSV and JSON formats.\nUses streaming for memory-efficient export of large datasets."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Company Management",
            "description": "\nAPIs for managing company information",
            "item": [
                {
                    "name": "Get Company Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "vel",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve the authenticated user's company details."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"slug\": \"example-company\",\n    \"createdAt\": \"2024-01-20T12:00:00Z\",\n    \"updatedAt\": \"2024-01-20T12:00:00Z\",\n    \"enabled\": true,\n    \"defaultCountryIsoCode\": \"ZA\",\n    \"name\": \"Example Company\",\n    \"logoUrl\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/256\",\n    \"logoThumbUrl\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/48\",\n    \"logoLargeUrl\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/512\",\n    \"logoUrlExpiresAt\": \"2024-01-21T12:00:00Z\",\n    \"favicons\": {\n      \"favicon16\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/16\",\n      \"favicon32\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/32\",\n      \"favicon48\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/48\",\n      \"appleTouchIcon\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/180\",\n      \"android192\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/192\",\n      \"android512\": \"https:\/\/api.example.com\/api\/v1\/c\/example-company\/logo\/512\"\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Company Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"TrackLab\"}"
                        },
                        "description": "Update the authenticated company's basic details."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"slug\": \"example-company\",\n    \"createdAt\": \"2024-01-20T12:00:00Z\",\n    \"updatedAt\": \"2024-01-21T12:00:00Z\",\n    \"enabled\": true,\n    \"defaultCountryIsoCode\": \"ZA\",\n    \"name\": \"Updated Example Company\",\n    \"logoUrl\": null,\n    \"logoThumbUrl\": null,\n    \"logoLargeUrl\": null,\n    \"logoUrlExpiresAt\": null,\n    \"favicons\": null\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/address",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/address",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/address",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "dicta",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/address",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/address",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/address",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "quas",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"addressString\":\"123 Main St, London SW1A 1AA\",\"addressLine1\":\"123 Main Street\",\"city\":\"London\",\"postCode\":\"SW1A 1AA\",\"countryIsoCode\":\"GB\",\"addressLine2\":\"Apt 4B\",\"neighborhood\":\"Westminster\",\"locality\":\"Central London\",\"place\":\"Piccadilly Circus\",\"district\":\"City of Westminster\",\"region\":\"Greater London\",\"location\":{\"lat\":51.5074,\"long\":-0.1278,\"latitude\":51.5074,\"longitude\":-0.1278}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload or replace the authenticated company's logo.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/logo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/logo",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"ipsam\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get the authenticated company's logo in the requested format.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/logo\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/logo\/:format",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "possimus",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete the authenticated company's logo.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/logo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/logo",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Company User Management",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "facere",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null},{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "facere",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"admin@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"viewer\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\":\"The email has already been taken.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/user\/role-uuids",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/role-uuids",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/role-uuids",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "libero",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[\"550e8400-e29b-41d4-a716-446655440000\",\"7d793789-c8b3-4687-9287-c1e4c9c4b87b\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/user\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"0d636928-0d9b-3dff-b6bb-6c08642a6f60\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/c\/{company_slug}\/user\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"dbf413b4-2664-334d-84d4-70a49954497a\",\"email\":\"john.doe@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/user\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"b785cd61-0c5c-364e-9c6c-22f81c7359d7\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/c\/{company_slug}\/user\/{user_uuid}\/disable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/disable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/disable",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"3a6c1556-7311-33c7-a3f8-046177ff8dd9\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/c\/{company_slug}\/user\/{user_uuid}\/enable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/enable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/enable",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"711423ba-dc20-3854-9cd3-2706588e30b2\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update User Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Upload or replace a user's profile picture."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get User Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture\/:format",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "thumbnail",
                                    "description": "The image format (original, thumbnail)."
                                },
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The user UUID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a user's profile picture."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk Upload Users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/bulk",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/bulk",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Upload a CSV file to create multiple users at once.\nCSV must have headers: email,firstName,lastName,roleSlug,phoneNumber"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"total\": 10,\n    \"created\": 8,\n    \"skipped\": 1,\n    \"errors\": 1,\n    \"results\": [\n      { \"email\": \"john@example.com\", \"status\": \"created\" },\n      { \"email\": \"existing@example.com\", \"status\": \"skipped\", \"reason\": \"User already exists\" }\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Document Types",
            "description": "",
            "item": [
                {
                    "name": "Get Document Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/document",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/document"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all available document types."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"unknown\",\"documentSectionTypeSlug\":null,\"documentFormatTypeSlug\":null},{\"slug\":\"unknown\",\"name\":\"unknown\",\"documentSectionTypeSlug\":null,\"documentFormatTypeSlug\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Document Format Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/document\/format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/document\/format"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all available document format types."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"},{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Document Section Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/document\/section",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/document\/section"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all available document section types."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"},{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"}]}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Documents",
            "description": "",
            "item": [
                {
                    "name": "Get Public Document",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/open-documents\/:openDocument_uuid\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/open-documents\/:openDocument_uuid\/:format",
                            "variable": [
                                {
                                    "id": "openDocument_uuid",
                                    "key": "openDocument_uuid",
                                    "value": "745eb650-575f-38de-af87-1ce9fbecbcb4",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "pdf",
                                    "description": "optional The format to return the document in (pdf, jpg, png). If not provided, returns the original format."
                                },
                                {
                                    "id": "openDocument",
                                    "key": "openDocument",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The UUID of the document."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a publicly shared document using its UUID.\nThis endpoint is publicly accessible without authentication.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "binary The document file",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"message\": \"Document not found\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Return an empty response simply to trigger the storage of the CSRF cookie in the browser.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/csrf-cookie",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/csrf-cookie"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6ImhOMFdkcHFydTZEV2h2QTY3aWRYNmc9PSIsInZhbHVlIjoiRmtzZU10d0N0VjZFc2ZpRXkzejJqYTNqa0FoRUt6SDJMQVhMTzREUUhiN2FpdVhxZVB0cnVadk5lMnlXTUpZbFdiVmRicXVOS1JScW95OXY5ZXU1eWk1OWR0U3VuNUZjZHM5OXhWZThLMTBYS1VsRThUWkhsS3crdnR1RXpYd3YiLCJtYWMiOiI2Y2RlOWYxOGM0ZjkxNzFkM2YwODQ2MDRmNjYxNDg2YTNkODIxZmQ1ZGFkYTlhNGExYTdkOTg3MTY2NWRlM2I1IiwidGFnIjoiIn0%3D; expires=Mon, 01 Jun 2026 07:32:34 GMT; Max-Age=7200; path=\/; domain=tl.haakdev.com; secure; samesite=lax; tracklab_session=eyJpdiI6IkhqQmdveW41OVFlSzJYdjBNeFZCU0E9PSIsInZhbHVlIjoiSFVPVTh2QlNsWUZqMUFIQVI0WXdEVHg3S29JU2NNay9FcExpVmZDTUExYXlUMkUxU3RwVXlnVXZEK0crc0JHS0hRb1J4MzlCdUd0a2JYM0ZWbWZJRWpaWnIxMzdTS3B0L25pOUxDUDZ2aWpOSmNmZGJrNVJCQWxsQzBlTi90Zk8iLCJtYWMiOiI0Y2VlNTNiNWIxOWNkNmJiYzljOTViMTJkNTE4MmM3MzMxYTU3MjE4Y2MyMWY5MWE4YzZmOGNiNzNiMTBiNjAzIiwidGFnIjoiIn0%3D; expires=Mon, 01 Jun 2026 07:32:34 GMT; Max-Age=7200; path=\/; domain=tl.haakdev.com; secure; httponly; samesite=lax"
                                }
                            ],
                            "code": 204,
                            "body": "",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Authenticate the request for channel access.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/broadcasting\/auth",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/broadcasting\/auth"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "quod",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "dolorem",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440101\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440102\",\"status\":\"enabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Stows trackers when wind speed exceeds threshold.\",\"cooldownMinutes\":15,\"autoClear\":true,\"clearAfterSeconds\":300,\"evaluationPeriodSeconds\":60,\"evaluationCountThreshold\":3}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "26f2fd32-b28c-33ec-9988-5dbdf5f3e67d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "967b3d5f-850e-3892-a03e-ba0aaed859ba",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"disabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Updated description for wind stow rule.\",\"cooldownMinutes\":30,\"autoClear\":true,\"clearAfterSeconds\":600,\"evaluationPeriodSeconds\":120,\"evaluationCountThreshold\":2}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "9df1748d-e89a-386c-b2e1-b388eb5a9779",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-webhook-sources",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-webhook-sources",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-webhook-sources",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "odit",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation-webhook-sources",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-webhook-sources",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-webhook-sources",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "consequatur",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Farm Weather Provider\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440020\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-webhook-sources\/{automationInboundWebhookSource_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "0fbdd74f-88b2-3675-b503-90eca53e7b27",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/automation-webhook-sources\/{automationInboundWebhookSource_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "b3e84f43-edbc-3816-af9c-349a2cd70735",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation-webhook-sources\/{automationInboundWebhookSource_uuid}\/rotate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid\/rotate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid\/rotate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "dea90f8e-9369-3975-b283-949ae8d97e76",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-events",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "libero",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-events\/{automationEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationEvent_uuid",
                                    "key": "automationEvent_uuid",
                                    "value": "02ccea26-141c-4f51-9aea-470b69cea45c",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation-events\/manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-events\/manual",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-events\/manual",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "incidunt",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"emergency_stow\",\"payload\":{\"reason\":\"high_wind\",\"speed\":75},\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440002\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-executions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-executions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-executions",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "in",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-executions\/{automationExecution_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-executions\/:automationExecution_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-executions\/:automationExecution_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationExecution_uuid",
                                    "key": "automationExecution_uuid",
                                    "value": "1c0df36a-2756-3b6b-a56d-757367eeb89a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation\/test\/fire-event",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/fire-event",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/fire-event",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "ipsam",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"manual_stow_triggered\",\"payload\":{\"reason\":\"high_wind\",\"windSpeed\":21.6},\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440040\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440041\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation\/test\/dry-run-match",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/dry-run-match",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/dry-run-match",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "aspernatur",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ruleUuid\":\"550e8400-e29b-41d4-a716-446655440030\",\"eventPayload\":{\"eventName\":\"wind_alert\",\"speed\":72.4,\"unit\":\"kmh\"}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation\/test\/preview-template",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/preview-template",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/preview-template",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "sapiente",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"template\":\"Alert: @{{ collector.name }} exceeded @{{ threshold }}.\",\"context\":{\"collector\":{\"name\":\"NCU-12\"},\"threshold\":85}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation\/test\/send-notification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/send-notification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/send-notification",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "delectus",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationPolicyUuid\":\"550e8400-e29b-41d4-a716-446655440050\",\"recipientEmail\":\"alerts@example.com\",\"context\":{\"collectorName\":\"NCU-5\",\"alarm\":\"overheat\"}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "accusantium",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "inventore",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"weather-station-test-endpoint\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "4a3bde06-adce-3403-90bb-04aacffde699",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "721a3b73-79e5-3d84-b8fd-79ffcd6443fa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/rotate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/rotate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/rotate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "12450b75-0c6d-392d-81fd-fc4d9a0178c7",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "526d77d2-8b52-3dd7-b900-131f1f4c10f3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events",
                            "query": [
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of events to return per page. Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Pagination page number. Must be at least 1.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events?perPage=25&page=1",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "c4e019bd-132c-3449-b7b9-4ff6dfd9afb9",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/events\/latest",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events\/latest",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events\/latest",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "448ed4dd-f85f-3dd1-9823-0597c82bed9d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "c918227e-13e5-37fc-98b7-e31930087cd9",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation\/test\/webhook-events\/{automationTestWebhookEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEvent_uuid",
                                    "key": "automationTestWebhookEvent_uuid",
                                    "value": "8b68c6ba-1f43-3566-9952-27bf9e53f1f3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/automation\/test\/webhook-events\/{automationTestWebhookEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEvent_uuid",
                                    "key": "automationTestWebhookEvent_uuid",
                                    "value": "c9363479-4e71-3f58-a17f-77ad2f6837c3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation\/test\/webhook-inbox\/setup",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/test\/webhook-inbox\/setup",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/test\/webhook-inbox\/setup",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "ipsam",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Automation Test Inbox\",\"resetEvents\":false,\"rotateSecret\":true,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440010\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List failure logs for a collector.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/failures",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/failures",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "voluptas",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "autem",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Report a new failure for a collector.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/failures",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/failures",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "doloribus",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "officia",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"failureTypeSlug\":\"hardware_failure\",\"description\":\"Motor stuck\",\"severity\":\"high\",\"detectedAt\":\"2026-02-14T10:00:00Z\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Create a new collector for the company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "rerum",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Main Collector\",\"description\":\"Collector for north field\",\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"collectorTypeSlug\":\"ncu\",\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"serial\":\"COL-001-2024\",\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440123\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"name\": \"Main Collector\",\n    \"description\": \"Collector for north field\",\n    \"collectorTypeSlug\": \"ncu\",\n    \"type\": \"NCU\",\n    \"parentUuid\": null,\n    \"childrenUuids\": [],\n    \"serial\": \"COL-001-2024\",\n    \"location\": {\n      \"lat\": 51.509865,\n      \"lng\": -0.118092\n    },\n    \"currentJunction\": {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440002\",\n      \"farmSectionUuid\": \"550e8400-e29b-41d4-a716-446655440123\",\n      \"row\": 0,\n      \"column\": 0\n    },\n    \"createdAt\": \"2024-01-20T12:00:00Z\",\n    \"updatedAt\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The collector name field is required.\"\n    ],\n    \"locationJson.latitude\": [\n      \"The latitude must be between -90 and 90 degrees\"\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get All Collector Parameters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/parameter",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/parameter",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "quia",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get All Collector Measurement Availability",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/measurement\/available",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/measurement\/available",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tempore",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns measurement availability (min\/max timestamps) for all collectors in the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"<collector-uuid>\": {\n      \"<measurement-type-slug>\": {\n        \"collectorUuid\": \"uuid-here\",\n        \"collectorMeasurementTypeSlug\": \"ncu-cpu-temperature\",\n        \"minTimestamp\": \"2025-11-12T22:40:36Z\",\n        \"maxTimestamp\": \"2025-12-14T22:13:05Z\",\n        \"dataTypeSlug\": \"numeric\",\n        \"dataTypeName\": \"Numeric\",\n        \"dataTypeIsNumeric\": true\n      }\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Collector Measurement Availability Grouped",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/measurement\/available\/group",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/measurement\/available\/group",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "laboriosam",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns measurement availability aggregated by measurement type across all collectors."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"<measurement-type-slug>\": {\n      \"collectorMeasurementTypeSlug\": \"ncu-cpu-temperature\",\n      \"minTimestamp\": \"2025-11-12T22:40:36Z\",\n      \"maxTimestamp\": \"2025-12-14T22:13:05Z\"\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get All Collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "ncu",
                                    "description": "Filter by collector type (ncu or tcu).",
                                    "disabled": false
                                },
                                {
                                    "key": "parent_uuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter TCUs by parent NCU UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "format",
                                    "value": "paginated",
                                    "description": "Response format (paginated or keyed). Default: paginated.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector?page=1&perPage=15&type=ncu&parent_uuid=550e8400-e29b-41d4-a716-446655440000&format=paginated",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null},{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}]}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"name\": \"Main Collector\",\n      \"description\": \"Primary collector\",\n      \"type\": \"NCU\",\n      \"typeId\": 1,\n      \"parentUuid\": null,\n      \"childrenUuids\": [\"550e8400-e29b-41d4-a716-446655440001\"],\n      \"createdAt\": \"2024-01-20T12:00:00Z\",\n      \"updatedAt\": \"2024-01-20T12:00:00Z\",\n      \"enabled\": true,\n      \"companySlug\": \"tracklab\",\n      \"farmUuid\": \"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\n      \"serial\": \"NCU-001\",\n      \"location\": {\n        \"lat\": 51.509865,\n        \"lng\": -0.118092\n      }\n    }\n  ],\n  \"links\": {\n    \"first\": \"http:\/\/example.com\/api\/company\/tracklab\/collector?page=1\",\n    \"last\": \"http:\/\/example.com\/api\/company\/tracklab\/collector?page=5\",\n    \"prev\": null,\n    \"next\": \"http:\/\/example.com\/api\/company\/tracklab\/collector?page=2\"\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 5,\n    \"path\": \"http:\/\/example.com\/api\/company\/tracklab\/collector\",\n    \"perPage\": 15,\n    \"to\": 15,\n    \"total\": 75\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Collector",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "qui",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Updated Field Collector\",\"description\":\"Updated collector description\",\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": "Update an existing collector's details."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Collector Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "quidem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "dolor",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Child Collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/children",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "format",
                                    "value": "paginated",
                                    "description": "Response format (paginated or keyed). Default: paginated.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/children?page=1&perPage=15&format=paginated",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "harum",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "totam",
                                    "description": "The UUID of the parent NCU collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get all TCUs that belong to a specific NCU"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null},{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}]}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"name\": \"TCU 1\",\n      \"description\": \"Tracking Control Unit 1\",\n      \"type\": \"TCU\",\n      \"typeId\": 2,\n      \"parentUuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"childrenUuids\": [],\n      \"createdAt\": \"2024-01-20T12:00:00Z\",\n      \"updatedAt\": \"2024-01-20T12:00:00Z\",\n      \"enabled\": true,\n      \"companySlug\": \"tracklab\",\n      \"farmUuid\": \"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\n      \"serial\": \"TCU-001\",\n      \"location\": {\n        \"lat\": 51.509865,\n        \"lng\": -0.118092\n      }\n    }\n  ],\n  \"links\": {...},\n  \"meta\": {...}\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"error\": \"Only NCU collectors can have children\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Collector Parent",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parent",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parent",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "sit",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "eius",
                                    "description": "The UUID of the TCU collector"
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": "Update the parent NCU of a TCU collector"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"name\": \"TCU 1\",\n    \"description\": \"Tracking Control Unit 1\",\n    \"type\": \"TCU\",\n    \"typeId\": 2,\n    \"parentUuid\": \"550e8400-e29b-41d4-a716-446655440000\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"error\": \"Only TCU collectors can have a parent\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Collector Parameters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parameter",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parameter",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "quasi",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "sapiente",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Collector Measurement Availability",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/measurement\/available",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/measurement\/available",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "ut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "ut",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns measurement availability (min\/max timestamps) for a single collector."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"<measurement-type-slug>\": {\n      \"collectorUuid\": \"uuid-here\",\n      \"collectorMeasurementTypeSlug\": \"ncu-cpu-temperature\",\n      \"minTimestamp\": \"2025-11-12T22:40:36Z\",\n      \"maxTimestamp\": \"2025-12-14T22:13:05Z\",\n      \"dataTypeSlug\": \"numeric\",\n      \"dataTypeName\": \"Numeric\",\n      \"dataTypeIsNumeric\": true\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Collector Lifecycle Timeline",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/timeline",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/timeline",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "aut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "eveniet",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a chronological timeline of lifecycle events for a collector,\nincluding status changes, farm placements, handovers, and firmware changes."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Collector Parameters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parameters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parameters",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "excepturi",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "sint",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parameters\":[]}"
                        },
                        "description": "Update one or more parameters for a specific collector. This will update the local parameter\nvalues and send commands to the device to apply the changes."
                    },
                    "response": []
                },
                {
                    "name": "Initiate Firmware Update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/firmware-update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/firmware-update",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "eveniet",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"firmwareTypeSlug\":\"firmware-v1.2.3\"}"
                        },
                        "description": "Assign a firmware version to a collector, record the assignment in the firmware history,\nand send the update command to the device via MQTT."
                    },
                    "response": []
                },
                {
                    "name": "Broadcast Parameter Update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/broadcast-parameters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/broadcast-parameters",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "et",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "aut",
                                    "description": "The UUID of the NCU collector"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parameters\":[]}"
                        },
                        "description": "Send a single MQTT broadcast command to all child TCUs of an NCU,\nwhile storing parameters locally per-child-TCU."
                    },
                    "response": []
                },
                {
                    "name": "Move Collector to Farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/farm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/farm",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "facere",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "delectus",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"row\":3,\"column\":5,\"widthM\":\"6.5\",\"heightM\":\"2.4\",\"angleDeg\":\"12.5\",\"copyCollectorLocation\":false}"
                        },
                        "description": "Move a collector to a different farm. This creates a new entry in the\ncollector_farm_junctions table and deactivates the previous junction."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Collector successfully moved to farm\",\n  \"data\": {\n    \"collector\": { ... },\n    \"newFarm\": { \"uuid\": \"...\", \"name\": \"...\" },\n    \"tracker\": { ... }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"error\": \"Target farm not found or does not belong to this company\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Decommission a Collector",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/decommission",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/decommission",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "nobis",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"End of life \u2014 hardware fault\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Recommission a Decommissioned Collector",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/recommission",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/recommission",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "sequi",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "autem",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Unassign a collector from its current farm.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/unassign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/unassign",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "inventore",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "itaque",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"Relocated to different site\"}"
                        },
                        "description": "Moves the collector to the company's unassigned farm\/section and transitions\nits lifecycle status to 'unassigned'. For TCU collectors, the parent link is\nset to the system Holding NCU. For NCU collectors, the parent link is removed."
                    },
                    "response": []
                },
                {
                    "name": "Handover a collector to a replacement collector while preserving tracker identity.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:oldCollector_uuid\/handover",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:oldCollector_uuid\/handover",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "oldCollector_uuid",
                                    "key": "oldCollector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"replacementCollectorUuid\":\"550e8400-e29b-41d4-a716-446655440123\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Swap a deployed\/active collector with a replacement at the same farm position.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/swap",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/swap",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "explicabo",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "unde",
                                    "description": "The UUID of the collector to swap out"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"replacementCollectorUuid\":\"550e8400-e29b-41d4-a716-446655440123\"}"
                        },
                        "description": "Unassigns the old collector from its farm position and places the replacement\ncollector at the same farm, section, row, and column. The old collector is\ntransitioned to 'unassigned' and the replacement is transitioned to 'deployed'."
                    },
                    "response": []
                },
                {
                    "name": "Get Current Collector Firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/firmware",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "sit",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "odio",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the currently assigned firmware for a collector."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Collector Firmware History",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/firmware\/history",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/firmware\/history?page=1&perPage=15",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "fugit",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "et",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the history of firmware assignments for a collector."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Rename a tracker and lock it from automatic collector-name propagation.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/tracker\/:tracker_uuid\/name",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/tracker\/:tracker_uuid\/name",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "tracker_uuid",
                                    "key": "tracker_uuid",
                                    "value": "a205ee53-a5ce-4ecf-8103-d1ace6488432",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Row Tracker A2\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all warranties for a collector.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "File a warranty claim against a collector's warranty.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty\/claims",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty\/claims",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorWarrantyUuid\":\"550e8400-e29b-41d4-a716-446655440060\",\"description\":\"Actuator failed during normal operation within warranty period.\",\"coveredByWarranty\":true,\"cost\":249.99,\"rmaRequestUuid\":\"550e8400-e29b-41d4-a716-446655440061\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List Company Links (Granted)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all company links granted by this company."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List Received Company Links",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/received",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/received",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all company links received by this company."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Company Link",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"remoteCompanySlug\":\"acme-corp\",\"roles\":{\"companyWide\":[\"user\"],\"farms\":[{\"farmUuid\":\"0a035201-6306-3212-aaf3-5bf8114d7e85\",\"roles\":[\"owner\"]}],\"collectors\":[{\"collectorUuid\":\"51608d9a-14cb-323f-ada4-6c51461dce75\",\"roles\":[\"user\"]}]},\"validUntil\":\"2026-12-31\"}"
                        },
                        "description": "Creates a new company link with an invite for the receiving company."
                    },
                    "response": []
                },
                {
                    "name": "Show Company Link",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "95298f7c-1cbe-345a-bd52-2d6c4ca57fa6",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns details of a specific company link."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Company Link",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "33d503fe-f801-3a82-aed2-4ea536c4fe27",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"active\",\"validUntil\":\"2026-12-31\"}"
                        },
                        "description": "Updates a company link status (suspend\/reactivate)."
                    },
                    "response": []
                },
                {
                    "name": "Unlink (Terminate) Company Link",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "6655738a-9a70-3862-b95b-6ca0ad9c3b92",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Terminates a company link. Either company can unlink."
                    },
                    "response": []
                },
                {
                    "name": "Add Company-Wide Role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:link_uuid\/roles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:link_uuid\/roles",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "link_uuid",
                                    "key": "link_uuid",
                                    "value": "eea279a6-631a-3768-8397-6c44ed3f2074",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"roleSlug\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove Company-Wide Role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:link_uuid\/roles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:link_uuid\/roles\/:id",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "link_uuid",
                                    "key": "link_uuid",
                                    "value": "66ad2fcf-1066-3fea-bb05-fa02b8e14d1c",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "repellendus",
                                    "description": "The ID of the role."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Add Farm-Level Role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:link_uuid\/farms\/:farm_uuid\/roles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:link_uuid\/farms\/:farm_uuid\/roles",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "link_uuid",
                                    "key": "link_uuid",
                                    "value": "480d13a4-b369-3674-8e82-d91fd1a72804",
                                    "description": ""
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"roleSlug\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove Farm-Level Role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:link_uuid\/farms\/:farm_uuid\/roles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:link_uuid\/farms\/:farm_uuid\/roles\/:id",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "link_uuid",
                                    "key": "link_uuid",
                                    "value": "c983c95e-1159-33d2-8309-71b838d9352f",
                                    "description": ""
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "officia",
                                    "description": "The ID of the role."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Add Collector-Specific Role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:link_uuid\/collectors\/:collector_uuid\/roles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:link_uuid\/collectors\/:collector_uuid\/roles",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "link_uuid",
                                    "key": "link_uuid",
                                    "value": "99b0a425-aa8b-3544-983b-29e26f5e98bd",
                                    "description": ""
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"roleSlug\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove Collector-Specific Role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:link_uuid\/collectors\/:collector_uuid\/roles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:link_uuid\/collectors\/:collector_uuid\/roles\/:id",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "link_uuid",
                                    "key": "link_uuid",
                                    "value": "aaa994c8-971b-30c6-8bf7-e4efbea50a3b",
                                    "description": ""
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "nesciunt",
                                    "description": "The ID of the role."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List Pending Invites",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/link-invites",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/link-invites",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all pending company link invites for this company (as receiving company)."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Accept Company Link Invite",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/link-invites\/:invite_uuid\/accept",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/link-invites\/:invite_uuid\/accept",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "invite_uuid",
                                    "key": "invite_uuid",
                                    "value": "b50254b4-f894-3677-ac61-fefa35438518",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Accepts a pending company link invite, activating the link."
                    },
                    "response": []
                },
                {
                    "name": "Reject Company Link Invite",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/link-invites\/:invite_uuid\/reject",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/link-invites\/:invite_uuid\/reject",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "invite_uuid",
                                    "key": "invite_uuid",
                                    "value": "28e7db3a-a9f3-3455-93f4-4fbbbeba41cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Rejects a pending company link invite."
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/device-groups",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "officia",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/device-groups",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "nemo",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors\",\"description\":\"All collectors in section A of the farm\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\"],\"siteUuids\":[\"e4f61567-202b-3352-a8b3-cd774b2a1a4f\"],\"collectorUuids\":[\"0dfd0fc5-8f1e-31b7-a231-2ec4e05f2cf0\"],\"excludeCollectorUuids\":[\"38c34a7d-dfba-3920-87e5-3279654818ce\"]},\"collectorUuids\":[\"c21ed0ef-4326-3830-9cdf-309e7dfc8ef5\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors Updated\",\"description\":\"Updated collectors in section A\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\",\"ncu-v3\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\",\"550e8400-e29b-41d4-a716-446655440001\"],\"siteUuids\":[\"70171814-7b97-3437-8ed4-6dc4c05201ae\"],\"collectorUuids\":[\"2c556ef6-ef78-3b99-9fa4-0154b9452b5f\"],\"excludeCollectorUuids\":[\"8a92a999-8ed0-3476-bb15-7fb8bfa33382\"]},\"collectorUuids\":[\"639342e2-d3c1-3951-8103-e8aa51ef3b19\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"add\",\"collectorUuids\":[\"20965bbb-3154-3a41-9d9f-a98884dd7575\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/device-models",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-models",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-models",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/device-models",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-models",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-models",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU v2.0\",\"slug\":\"ncu-v2\",\"description\":\"Network Control Unit version 2.0 with enhanced capabilities\",\"manufacturer\":\"TrackLab\",\"collectorTypeSlug\":\"ncu\",\"hardwareVersions\":[\"dnbenixxizkwqqbkgxxftl\"],\"enabled\":true,\"orderColumn\":1}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/device-models\/{deviceModelType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceModelType_slug",
                                    "key": "deviceModelType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the deviceModelType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/device-models\/{deviceModelType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceModelType_slug",
                                    "key": "deviceModelType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the deviceModelType."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU v2.0\",\"slug\":\"ncu-v2\",\"description\":\"Network Control Unit version 2.0 with enhanced capabilities\",\"manufacturer\":\"TrackLab\",\"collectorTypeSlug\":\"ncu\",\"hardwareVersions\":[\"xkzysreirakfzkkzklz\"],\"enabled\":true,\"orderColumn\":1}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/device-models\/{deviceModelType_slug}\/toggle",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug\/toggle",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceModelType_slug",
                                    "key": "deviceModelType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the deviceModelType."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/device-models\/{deviceModelType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-models\/:deviceModelType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceModelType_slug",
                                    "key": "deviceModelType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the deviceModelType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get All Farms",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "rerum",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all farms associated with the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false},{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add New Farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "non",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Farm\",\"description\":\"Main production farm\",\"location\":{\"latitude\":\"51.509865\",\"longitude\":\"-0.118092\"}}"
                        },
                        "description": "Create a new farm for the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Farm Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "at",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "rem",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve details of a specific farm."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "ut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "ut",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Farm\",\"description\":\"Main production farm\",\"location\":{\"latitude\":\"51.509865\",\"longitude\":\"-0.118092\"}}"
                        },
                        "description": "Update an existing farm's details."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"name\": \"Updated Farm Name\",\n    \"description\": \"Updated farm description\",\n    \"location\": {\n      \"latitude\": 51.509865,\n      \"longitude\": -0.118092\n    },\n    \"created_at\": \"2024-01-20T12:00:00Z\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Farm Collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/collector",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/collector",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null},{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List sections for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections",
                            "query": [
                                {
                                    "key": "enabled_only",
                                    "value": "1",
                                    "description": "Filter to only enabled sections.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Results per page (max 100).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections?enabled_only=1&page=1&perPage=25",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The UUID of the farm."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns paginated list of sections for a farm belonging to the company.\nUse this to get section UUIDs when moving collectors."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true},{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The UUID of the farm."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field\",\"description\":\"Northern section of the farm\",\"enabled\":true,\"orderColumn\":1,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Primary section\"}}"
                        },
                        "description": "Creates a section within a specific farm. Requires FARM_UPDATE permission."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/firmware-keys\/workflows\/provision",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/workflows\/provision",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/workflows\/provision",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Production Farm Key\",\"description\":\"Key for firmware updates on production farm\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"expiresAt\":\"2025-12-31\",\"isActive\":true,\"plainKey\":\"abc123def456ghi789jkl012\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Production Farm Key\",\"description\":\"Key for firmware updates on production farm\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"expiresAt\":\"2025-12-31\",\"isActive\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Updated Farm Key\",\"description\":\"Updated key description\",\"expiresAt\":\"2026-06-30\",\"isActive\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}\/deactivate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List Company Invitations",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/invitations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/invitations",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all invitations for the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":null,\"email\":null,\"status\":null,\"roleSlug\":null,\"invitedBy\":{\"uuid\":null,\"name\":null},\"validUntil\":\"2026-06-01T05:32:36+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-06-01T05:32:36+00:00\"},{\"uuid\":null,\"email\":null,\"status\":null,\"roleSlug\":null,\"invitedBy\":{\"uuid\":null,\"name\":null},\"validUntil\":\"2026-06-01T05:32:36+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-06-01T05:32:36+00:00\"}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Invitation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/invitations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/invitations",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"roleSlug\":\"user\"}"
                        },
                        "description": "Creates a new invitation and sends email to the invitee."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"user@example.com\",\n    \"status\": \"pending\",\n    \"roleSlug\": \"user\",\n    \"validUntil\": \"2026-01-26T00:00:00+00:00\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Revoke Invitation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/invitations\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/invitations\/:uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "4a08423c-c6a8-3fc5-95c3-b0a28befd023",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "acme-corp",
                                    "description": "The company slug."
                                },
                                {
                                    "id": "invitation",
                                    "key": "invitation",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The invitation UUID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Revokes a pending invitation."
                    },
                    "response": []
                },
                {
                    "name": "Query Measurements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/measurements",
                            "query": [
                                {
                                    "key": "types[0]",
                                    "value": "totam",
                                    "description": "The slug of an existing record in the collector_measurement_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2024-01-01T00%3A00%3A00Z",
                                    "description": "datetime Start date for filtering (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "aut",
                                    "description": "The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "e512f896-c1cc-32e1-8d1a-db479aadd71e",
                                    "description": "Filter by farm UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "76575595-65d5-35cb-9192-c2c7fb3728b7",
                                    "description": "Filter by farm section UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "error",
                                    "description": "Filter by collector type (e.g., 'ncu', 'tcu')",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2024-01-31T23%3A59%3A59Z",
                                    "description": "datetime End date for filtering (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "raw",
                                    "value": "1",
                                    "description": "Return raw data without aggregation. Default: false",
                                    "disabled": false
                                },
                                {
                                    "key": "period",
                                    "value": "1-hour",
                                    "description": "Aggregation period slug (overrides auto-selection).",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "est",
                                    "description": "Aggregation method slug from `measurement_aggregation_types` (see `\/api\/v1\/type\/data\/measurement-aggregation`). Default: avg",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "possimus",
                                    "description": "numeric Exclude values below threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMax",
                                    "value": "sint",
                                    "description": "numeric Exclude values above threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "dolor",
                                    "description": "Grouping: measurement_type, collector, farm_section, time_bucket, tracker. Default: measurement_type",
                                    "disabled": false
                                },
                                {
                                    "key": "includeMetadata",
                                    "value": "",
                                    "description": "Include collector info with data. Default: false",
                                    "disabled": true
                                },
                                {
                                    "key": "includeReplacements",
                                    "value": "",
                                    "description": "Include collector replacement history on the same tracker(s) when querying by collector UUIDs. Default: false",
                                    "disabled": true
                                },
                                {
                                    "key": "includeCount",
                                    "value": "1",
                                    "description": "Include sample count per bucket. Default: false",
                                    "disabled": false
                                },
                                {
                                    "key": "exportType",
                                    "value": "sequi",
                                    "description": "Export format: json, csv, xml, excel. Default: json",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "11",
                                    "description": "Page number. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "10",
                                    "description": "Items per page (max 10000). Default: 100",
                                    "disabled": false
                                },
                                {
                                    "key": "types[][0]",
                                    "value": "temperature",
                                    "description": "Array of measurement type slugs.",
                                    "disabled": false
                                },
                                {
                                    "key": "types[][1]",
                                    "value": "humidity",
                                    "description": "Array of measurement type slugs.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[][0]",
                                    "value": "cum",
                                    "description": "Filter by specific collector UUIDs",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/measurements?types[0]=totam&from=2024-01-01T00%3A00%3A00Z&collectorUuids[0]=aut&farmUuid=e512f896-c1cc-32e1-8d1a-db479aadd71e&farmSectionUuid=76575595-65d5-35cb-9192-c2c7fb3728b7&collectorTypeSlug=error&to=2024-01-31T23%3A59%3A59Z&raw=1&period=1-hour&aggregation=est&valueMin=possimus&valueMax=sint&groupBy=dolor&includeMetadata=&includeReplacements=&includeCount=1&exportType=sequi&page=11&perPage=10&types[][0]=temperature&types[][1]=humidity&collectorUuids[][0]=cum",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "deserunt",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Query measurement data with support for multiple types, collectors, farms, and aggregation methods."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Generate a short-lived signed download link for measurements.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/measurements\/download-link",
                            "query": [
                                {
                                    "key": "types[0]",
                                    "value": "necessitatibus",
                                    "description": "The slug of an existing record in the collector_measurement_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2025-01-01T00%3A00%3A00Z",
                                    "description": "Start timestamp (ISO 8601). Must be a valid date. Must be a date before now.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "iste",
                                    "description": "The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d",
                                    "description": "Filter by farm UUID. The uuid of an existing record in the farms table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa",
                                    "description": "Filter by farm section UUID. The uuid of an existing record in the farm_sections table.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. The slug of an existing record in the collector_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2025-01-02T00%3A00%3A00Z",
                                    "description": "End timestamp (ISO 8601). Must be a valid date. Must be a date after from.",
                                    "disabled": false
                                },
                                {
                                    "key": "raw",
                                    "value": "",
                                    "description": "When true, returns raw measurements without aggregation.",
                                    "disabled": true
                                },
                                {
                                    "key": "period",
                                    "value": "minute",
                                    "description": "Aggregation period type slug (when raw=false). The slug of an existing record in the period_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "avg",
                                    "description": "Aggregation method slug (enabled aggregation types only). The slug of an existing record in the measurement_aggregation_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "0",
                                    "description": "Minimum measurement value filter.",
                                    "disabled": true
                                },
                                {
                                    "key": "valueMax",
                                    "value": "1000",
                                    "description": "Maximum measurement value filter.",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "measurement_type",
                                    "description": "Group results by dimension.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeMetadata",
                                    "value": "1",
                                    "description": "Include measurement type \/ collector metadata.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeReplacements",
                                    "value": "",
                                    "description": "When querying by collector UUIDs, include collector history on the same tracker(s) across handovers.",
                                    "disabled": true
                                },
                                {
                                    "key": "includeCount",
                                    "value": "",
                                    "description": "Include total record count per group.",
                                    "disabled": true
                                },
                                {
                                    "key": "exportType",
                                    "value": "json",
                                    "description": "Optional export format.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination. Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "100",
                                    "description": "Items per page (max 10000). Must be at least 1. Must not be greater than 10000.",
                                    "disabled": false
                                },
                                {
                                    "key": "expiresInMinutes",
                                    "value": "10",
                                    "description": "Link expiry time in minutes (max 10). Must be at least 1. Must not be greater than 10.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/measurements\/download-link?types[0]=necessitatibus&from=2025-01-01T00%3A00%3A00Z&collectorUuids[0]=iste&farmUuid=d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d&farmSectionUuid=3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa&collectorTypeSlug=ncu&to=2025-01-02T00%3A00%3A00Z&raw=&period=minute&aggregation=avg&valueMin=0&valueMax=1000&groupBy=measurement_type&includeMetadata=1&includeReplacements=&includeCount=&exportType=json&page=1&perPage=100&expiresInMinutes=10",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "sit",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "non",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440111\",\"notificationChannelType\":\"email\",\"name\":\"Ops Email Alerts\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "aa39ab30-b7fa-33d0-828f-9bff0797116c",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "705003e3-7b69-3f58-b81e-404410b32897",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"name\":\"Operations Alerts\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "39cbb6d8-d2ac-35fe-ae52-b63f2e839efd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}\/emails",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/emails",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/emails",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "90f648f2-7973-3a84-a683-35229bb91844",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"emailAddress\":\"alerts@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}\/push-devices",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/push-devices",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/push-devices",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "f736b812-3f13-3be3-bf9f-b9aad51b619c",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"mobileDeviceUuid\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}\/webhooks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/webhooks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/webhooks",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "ec0e7fcb-cc4c-39b8-af77-e1d8e6383dde",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"PagerDuty Webhook\",\"url\":\"https:\\\/\\\/hooks.example.com\\\/alerts\",\"httpMethod\":\"POST\",\"timeoutSeconds\":30}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-channel-emails\/{notificationChannelEmail_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channel-emails\/:notificationChannelEmail_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channel-emails\/:notificationChannelEmail_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelEmail_uuid",
                                    "key": "notificationChannelEmail_uuid",
                                    "value": "eb9af24c-514b-3be3-b3e2-108d81dcb266",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-channel-push-devices\/{notificationChannelPushDevice_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channel-push-devices\/:notificationChannelPushDevice_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channel-push-devices\/:notificationChannelPushDevice_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelPushDevice_uuid",
                                    "key": "notificationChannelPushDevice_uuid",
                                    "value": "e0bfeeea-6118-3ccf-87a5-640760f617d5",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/notification-channel-webhooks\/{notificationChannelWebhook_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhook_uuid",
                                    "key": "notificationChannelWebhook_uuid",
                                    "value": "b619518e-ae05-32d3-9e78-43461aee8be5",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"PagerDuty Webhook\",\"url\":\"https:\\\/\\\/hooks.example.com\\\/alerts\",\"httpMethod\":\"PATCH\",\"timeoutSeconds\":20}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-channel-webhooks\/{notificationChannelWebhook_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhook_uuid",
                                    "key": "notificationChannelWebhook_uuid",
                                    "value": "48bbb056-a7a7-3cf9-bc7c-e5196c2de493",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/notification-channel-webhooks\/{notificationChannelWebhook_uuid}\/headers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid\/headers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid\/headers",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhook_uuid",
                                    "key": "notificationChannelWebhook_uuid",
                                    "value": "6773d50d-bcd5-3ba6-b331-838118ead8a8",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headerKey\":\"X-Signature\",\"headerValue\":\"secret-token\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-channel-webhook-headers\/{notificationChannelWebhookHeader_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-channel-webhook-headers\/:notificationChannelWebhookHeader_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-channel-webhook-headers\/:notificationChannelWebhookHeader_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhookHeader_uuid",
                                    "key": "notificationChannelWebhookHeader_uuid",
                                    "value": "5cd83c34-a5d7-3342-8508-aaec344288e3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "soluta",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/notification-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "enim",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"text\",\"name\":\"Critical Alert Template\",\"subjectTemplate\":\"[Alert] Collector Offline\",\"bodyTemplate\":\"Alert: Collector went offline at Farm Alpha.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"html\",\"name\":\"Updated Alert Template\",\"subjectTemplate\":\"[Updated] Collector Offline\",\"bodyTemplate\":\"<p>Alert rule updated for Collector Alpha.<\\\/p>\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "repudiandae",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/notification-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "necessitatibus",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440121\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440122\",\"name\":\"Critical Weather Policy\",\"enabled\":true,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440123\",\"notificationTemplateUuid\":\"550e8400-e29b-41d4-a716-446655440124\",\"labels\":[{\"key\":\"severity\",\"value\":\"critical\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-policies\/{notificationPolicy_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationPolicy_uuid",
                                    "key": "notificationPolicy_uuid",
                                    "value": "f619744d-914f-3a94-b16b-87dfe77307d4",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/notification-policies\/{notificationPolicy_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationPolicy_uuid",
                                    "key": "notificationPolicy_uuid",
                                    "value": "eebf76a2-a9c8-3bcd-88ce-722875708d92",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Critical Weather Policy\",\"enabled\":false,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440223\",\"notificationTemplateUuid\":\"550e8400-e29b-41d4-a716-446655440224\",\"labels\":[{\"key\":\"site\",\"value\":\"north-farm\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-policies\/{notificationPolicy_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationPolicy_uuid",
                                    "key": "notificationPolicy_uuid",
                                    "value": "386b28a2-245d-3ca0-afa0-ff6c85b64e65",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List RMA requests for the company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "requested",
                                    "description": "Filter by RMA status slug.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by collector UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "dateFrom",
                                    "value": "2025-01-01",
                                    "description": "Filter RMA requests created from this date (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "dateTo",
                                    "value": "2025-12-31",
                                    "description": "Filter RMA requests created up to this date (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma?status=requested&collectorUuid=550e8400-e29b-41d4-a716-446655440000&dateFrom=2025-01-01&dateTo=2025-12-31&page=1&perPage=25",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "explicabo",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "ab",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"reason\":\"Hardware fault detected\",\"description\":\"Collector stopped responding after firmware update\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show RMA request details.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "1f882efe-582d-3e0b-8675-c4a04356f8ad",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "aut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "culpa",
                                    "description": "The UUID of the RMA request"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update RMA status (e.g. shipped-to-vendor with tracking number).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "fe32ea09-4496-3278-ba0c-4d341689ab93",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "aut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "minus",
                                    "description": "The UUID of the RMA request"
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"trackingNumber\":\"1Z999AA10123456784\",\"status\":\"shipped-to-vendor\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Approve an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/approve",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/approve",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "fae2b375-d91d-3087-910d-a8f9ae317b7d",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "voluptatem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "aut",
                                    "description": "The UUID of the RMA request"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Reject an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/reject",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/reject",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "2fc66d27-7fd9-3e23-b7fa-d288932cb783",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "animi",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "blanditiis",
                                    "description": "The UUID of the RMA request"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"Collector is under warranty with manufacturer\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List notes for an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/notes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/notes",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "20dc1744-9843-3ef3-9ea4-cc9894f8a99f",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "quo",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "amet",
                                    "description": "The UUID of the RMA request"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a note to an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/notes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/rma\/:rmaRequest_uuid\/notes",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "9040e046-20f3-368d-9b73-a54327e3e2f1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "aut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "id",
                                    "description": "The UUID of the RMA request"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"note\":\"Customer contacted regarding shipping label\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns details of a specific farm section. Requires FARM_VIEW permission."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Updated\",\"description\":\"Updated description\",\"enabled\":false,\"orderColumn\":2,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Updated notes\"}}"
                        },
                        "description": "Updates an existing farm section. Requires FARM_UPDATE permission.\nThe \"Unassigned\" section cannot be edited."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Deletes a farm section. Requires FARM_UPDATE permission.\nThe \"Unassigned\" section cannot be deleted."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk assign collectors to section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid\/collectors\/bulk-assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid\/collectors\/bulk-assign",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorUuids\":[\"550e8400-e29b-41d4-a716-446655440001\",\"550e8400-e29b-41d4-a716-446655440002\"]}"
                        },
                        "description": "Assigns multiple collectors to a specific farm section. The farm is derived\nfrom the section automatically. Collectors already on this farm+section are skipped.\nRequires COLLECTOR_UPDATE permission."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\": {\"assigned\": 2, \"skipped\": 1, \"collectors\": [...]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"message\": \"This action is unauthorized.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"error\": \"Section not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\": \"Validation failed\", \"errors\": {\"collectorUuids\": [\"At least one collector UUID is required\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get current weather for all farms in a company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get current weather for a specific farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/current",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get weather history for a specific farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/history",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/history",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2025-01-01\",\"to\":\"2025-01-31\",\"page\":1,\"perPage\":25,\"limit\":24}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Refresh weather data for a specific farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/refresh",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/device-model-insights\/{collector_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-model-insights\/:collector_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-model-insights\/:collector_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceModelTypeSlug\":\"ncu-v2\",\"enabled\":true,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store Mobile Audit Events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/audit-events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/audit-events",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "aliquam",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceUuid\":\"550e8400-e29b-41d4-a716-446655440070\",\"events\":[{\"eventUuid\":\"550e8400-e29b-41d4-a716-446655440071\",\"occurredAt\":\"2026-02-17T10:00:00Z\",\"eventName\":\"collector_connection\",\"actionName\":\"connect\",\"operatorLabel\":\"operator-1\",\"connectionType\":\"bluetooth\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440072\",\"context\":{\"signalRssi\":-64},\"request\":{\"source\":\"mobile\"},\"result\":{\"status\":\"success\"},\"geo\":{\"lat\":33.4484,\"lng\":-112.074}}]}"
                        },
                        "description": "Upload a batch of mobile audit events for a company.\nDuplicate eventUuids are silently skipped (idempotent)."
                    },
                    "response": []
                },
                {
                    "name": "Upload NCU measurement and parameter data.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/ncu-data",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/ncu-data",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceUuid\":\"550e8400-e29b-41d4-a716-446655440080\",\"batchUuid\":\"550e8400-e29b-41d4-a716-446655440081\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440082\",\"measurements\":[{\"timestamp\":\"2026-02-17T10:05:00Z\",\"data\":{\"ambientTemp\":31.2}}],\"parameters\":{\"firmwareVersion\":\"1.18.4\",\"mode\":\"auto\"}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload NCU raw log file.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/ncu-logs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/ncu-logs",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "deviceUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440090",
                                    "type": "text",
                                    "description": "UUID of the mobile device uploading the log file. Must be a valid UUID."
                                },
                                {
                                    "key": "collectorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440091",
                                    "type": "text",
                                    "description": "UUID of the collector referenced by the log. Must be a valid UUID."
                                },
                                {
                                    "key": "notes",
                                    "value": "Captured right after an intermittent disconnect.",
                                    "type": "text",
                                    "description": "Optional operator notes for the uploaded logs. Must not be greater than 1000 characters."
                                },
                                {
                                    "key": "logFile",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all enabled document library sections.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all enabled categories for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all enabled documents for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Generate signed icon URLs for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate signed icon URLs for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate signed icon URLs for a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/documents\/:documentSectionDocument_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/documents\/:documentSectionDocument_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate a signed download URL for a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/download-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/download-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/email\/resend",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/resend",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/resend"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture\/:format",
                            "query": [
                                {
                                    "key": "token",
                                    "value": "54%7CVYSnJgtQsXZWN45UOPc3y16VArMBQ1KM1eMdIxLR417e6478",
                                    "description": "Optional Sanctum token for img src authentication.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/profile\/picture\/:format?token=54%7CVYSnJgtQsXZWN45UOPc3y16VArMBQ1KM1eMdIxLR417e6478",
                            "variable": [
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "square-48-webp",
                                    "description": "The image format\/conversion name."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve the authenticated user's profile picture. Supports token authentication\nvia query parameter for use in image tags where Bearer tokens cannot be sent."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The image file stream",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"Profile picture not found.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Current User",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves the complete profile information for the currently authenticated user.\nThis includes personal details, contact information, profile picture URLs, and\nassigned roles. The endpoint provides a comprehensive view of the user's account\ndata and preferences.\n\nThis endpoint is commonly used after login to initialize the user's session\nwith their full profile data, or to refresh the local cache of user information."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"john@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"phone_number\": \"+1234567890\",\n    \"created_at\": \"2024-01-20T12:00:00Z\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\",\n    \"profile_picture_url\": \"https:\/\/example.com\/profiles\/john.jpg\",\n    \"roles\": [\"user\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Check Authentication Status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/check"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Verifies if the current user has a valid authentication session. This endpoint\ncan be used by clients to validate their authentication state without making\na full profile request. It's particularly useful for SPA applications to check\nif their session is still valid.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"message\": \"Unauthenticated.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get User Companies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/company",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/company"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all companies associated with the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"slug\": \"example-company\",\n      \"createdAt\": \"2024-01-20T12:00:00Z\",\n      \"updatedAt\": \"2024-01-20T12:00:00Z\",\n      \"enabled\": true,\n      \"defaultCountryIsoCode\": \"ZA\",\n      \"country\": { \"isoCode\": \"ZA\", \"name\": \"South Africa\", \"emoji\": \"\ud83c\uddff\ud83c\udde6\" },\n      \"name\": \"Example Company\",\n      \"logoUrl\": null,\n      \"logoThumbUrl\": null,\n      \"logoLargeUrl\": null,\n      \"logoUrlExpiresAt\": null,\n      \"favicons\": null\n    }\n  ],\n  \"links\": {\n    \"first\": \"https:\/\/api.example.com\/api\/v1\/me\/companies?page=1\",\n    \"last\": \"https:\/\/api.example.com\/api\/v1\/me\/companies?page=1\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"total\": 1,\n    \"perPage\": 15,\n    \"currentPage\": 1,\n    \"lastPage\": 1,\n    \"from\": 1,\n    \"to\": 1,\n    \"hasMore\": false,\n    \"path\": \"https:\/\/api.example.com\/api\/v1\/me\/companies\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/me\/addresses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/addresses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/addresses"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/me\/addresses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/addresses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/addresses"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"addressString\":\"123 Main St, London SW1A 1AA\",\"addressLine1\":\"123 Main Street\",\"city\":\"London\",\"postCode\":\"SW1A 1AA\",\"countryIsoCode\":\"GB\",\"addressLine2\":\"Apt 4B\",\"neighborhood\":\"Westminster\",\"locality\":\"Central London\",\"place\":\"Piccadilly Circus\",\"district\":\"City of Westminster\",\"region\":\"Greater London\",\"location\":{\"lat\":51.5074,\"long\":-0.1278,\"latitude\":51.5074,\"longitude\":-0.1278}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get User Roles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/role",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/role"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all roles assigned to the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"acme-co\": [\"admin\", \"user\"],\n    \"tracklab\": [\"tracklab-support\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get User Permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/permissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/permissions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all permissions assigned to the authenticated user, grouped by company slug."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"acme-co\": [\"collectors.view\", \"collectors.update\"],\n    \"tracklab\": [\"tracklab.users.view\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/me\/realtime\/bootstrap",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/realtime\/bootstrap",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/realtime\/bootstrap"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/profile\/picture"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Upload or update the user's profile picture."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"john@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"profile_picture_url\": \"https:\/\/example.com\/profiles\/new-picture.jpg\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"file\": [\n      \"The file must be an image.\",\n      \"The file failed to upload.\"\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Generate Signed Asset URLs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/assets\/signed-urls",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/assets\/signed-urls"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"assetType\":\"profile_picture\",\"expiryMinutes\":120}"
                        },
                        "description": "Generate time-limited signed URLs for protected assets. These URLs can be\nused in img tags without requiring bearer token authentication."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"assetType\": \"profile_picture\",\n    \"urls\": {\n      \"imgUrl\": \"https:\/\/example.com\/api\/v1\/me\/profile\/picture\/uuid\/square-256-webp?expires=...\",\n      \"imgThumbUrl\": \"https:\/\/example.com\/api\/v1\/me\/profile\/picture\/uuid\/square-48-webp?expires=...\"\n    },\n    \"expiresAt\": \"2024-01-20T13:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/me\/document",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/document",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/document"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"documentTypeSlug\":\"proof-of-address\",\"file\":\"aut\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/me\/document\/{format}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/document\/:format",
                            "query": [
                                {
                                    "key": "documentTypeSlug",
                                    "value": "proof-of-address",
                                    "description": "Slug of the document type to retrieve. The slug of an existing record in the document_types table.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/document\/:format?documentTypeSlug=proof-of-address",
                            "variable": [
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "error",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update User Name",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/name",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/name"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"firstName\":\"John\",\"lastName\":\"Doe\"}"
                        },
                        "description": "Update the authenticated user's first and last name."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"john@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update User Email",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/email",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/email"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"newemail@example.com\"}"
                        },
                        "description": "Update the authenticated user's email address."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"newemail@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Phone Number",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/phonenumber",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/phonenumber"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\"}"
                        },
                        "description": "Update the authenticated user's phone number."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"phone_number\": \"+1234567890\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"oldPassword\":\"currentPass123\",\"password\":\"newSecurePass123!\"}"
                        },
                        "description": "Update the authenticated user's password."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"oldPassword\": [\"The provided password is incorrect.\"],\n    \"password\": [\"The password must be at least 10 characters.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Default Country",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/country\/default",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/country\/default"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"countryIsoCode\":\"US\"}"
                        },
                        "description": "Update the authenticated user's default country."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Default Company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/company\/default",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/company\/default"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-corp\"}"
                        },
                        "description": "Update the authenticated user's default company. The user must belong to\nthe target company (via user_companies relationship)."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"defaultCompanySlug\": \"acme-corp\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"message\": \"User does not belong to this company\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"companySlug\": [\"The selected companySlug is invalid.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete Current User Account",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/delete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/delete"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Soft-delete the authenticated user and revoke all tokens."
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/me\/2fa\/enable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/2fa\/enable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/2fa\/enable"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/me\/2fa\/verify",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/2fa\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/2fa\/verify"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"123456\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/me\/2fa\/disable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/2fa\/disable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/2fa\/disable"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/me\/sessions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/sessions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/sessions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/me\/sessions\/revoke",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/sessions\/revoke",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/sessions\/revoke"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sessionId\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/me\/sessions\/revoke-all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/sessions\/revoke-all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/sessions\/revoke-all"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Register or Update Mobile Device",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/mobile\/devices",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/mobile\/devices"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"platform\":\"android\",\"deviceModel\":\"Pixel 7 Pro\",\"osVersion\":\"14.0\",\"appVersion\":\"1.0.0\",\"buildNumber\":\"42\",\"pushToken\":\"fcm-token-here\"}"
                        },
                        "description": "Registers a new mobile device for the authenticated user, or updates\nan existing device if the deviceUuid already belongs to this user.\nReturns 403 if the deviceUuid belongs to a different user."
                    },
                    "response": []
                },
                {
                    "name": "Update Mobile Device Metadata",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/mobile\/devices\/:deviceUuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/mobile\/devices\/:deviceUuid",
                            "variable": [
                                {
                                    "id": "deviceUuid",
                                    "key": "deviceUuid",
                                    "value": "3FCAeB9A-D3AC-77C3-3deb-56E475A24991",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceModel\":\"Pixel 7 Pro\",\"osVersion\":\"14.0\",\"appVersion\":\"1.0.0\",\"buildNumber\":\"42\",\"pushToken\":\"fcm-token-here\"}"
                        },
                        "description": "Updates partial metadata on an existing mobile device (appVersion,\nbuildNumber, pushToken, etc.). The device must belong to the\nauthenticated user."
                    },
                    "response": []
                },
                {
                    "name": "Get Sync Status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/mobile\/sync-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/mobile\/sync-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns server time, feature flags, and limits for mobile clients\nto configure their sync behavior."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440101\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440102\",\"status\":\"enabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Stows trackers when wind speed exceeds threshold.\",\"cooldownMinutes\":15,\"autoClear\":true,\"clearAfterSeconds\":300,\"evaluationPeriodSeconds\":60,\"evaluationCountThreshold\":3}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "2ac7392c-fc0f-3818-a0b6-2d817a69e509",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "af77b9ba-4202-3c65-b3fc-63d8647ab0fb",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"disabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Updated description for wind stow rule.\",\"cooldownMinutes\":30,\"autoClear\":true,\"clearAfterSeconds\":600,\"evaluationPeriodSeconds\":120,\"evaluationCountThreshold\":2}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "a6ad6f56-46f8-3cb0-95b8-729eab18c8be",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-webhook-sources",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation-webhook-sources",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Farm Weather Provider\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440020\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-webhook-sources\/{automationInboundWebhookSource_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "45d30ad4-51f8-342e-91a5-d21ab0732422",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/automation-webhook-sources\/{automationInboundWebhookSource_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "214a37d4-a200-3a7a-883f-ef972bf9aabf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation-webhook-sources\/{automationInboundWebhookSource_uuid}\/rotate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid\/rotate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-webhook-sources\/:automationInboundWebhookSource_uuid\/rotate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "be82dacb-c3b0-3278-beb4-ea444822a992",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-events",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-events\/{automationEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationEvent_uuid",
                                    "key": "automationEvent_uuid",
                                    "value": "02ccea26-141c-4f51-9aea-470b69cea45c",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation-events\/manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-events\/manual",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-events\/manual",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"emergency_stow\",\"payload\":{\"reason\":\"high_wind\",\"speed\":75},\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440002\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-executions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-executions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-executions",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-executions\/{automationExecution_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-executions\/:automationExecution_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-executions\/:automationExecution_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationExecution_uuid",
                                    "key": "automationExecution_uuid",
                                    "value": "28b3b557-7a74-33b6-beda-0397e1c99559",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/fire-event",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/fire-event",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/fire-event",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"manual_stow_triggered\",\"payload\":{\"reason\":\"high_wind\",\"windSpeed\":21.6},\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440040\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440041\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/dry-run-match",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/dry-run-match",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/dry-run-match",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ruleUuid\":\"550e8400-e29b-41d4-a716-446655440030\",\"eventPayload\":{\"eventName\":\"wind_alert\",\"speed\":72.4,\"unit\":\"kmh\"}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/preview-template",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/preview-template",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/preview-template",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"template\":\"Alert: @{{ collector.name }} exceeded @{{ threshold }}.\",\"context\":{\"collector\":{\"name\":\"NCU-12\"},\"threshold\":85}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/send-notification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/send-notification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/send-notification",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationPolicyUuid\":\"550e8400-e29b-41d4-a716-446655440050\",\"recipientEmail\":\"alerts@example.com\",\"context\":{\"collectorName\":\"NCU-5\",\"alarm\":\"overheat\"}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"weather-station-test-endpoint\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "2e961f41-4493-35de-bc28-0bafb7b43d18",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "9d6e76ad-18d0-3503-a830-af583e3b62ed",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/rotate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/rotate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/rotate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "f34e6278-dd92-35a1-8757-11b3cfd31e2a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "f6186c4b-ac3d-3971-9a3f-76c35744e253",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events",
                            "query": [
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of events to return per page. Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Pagination page number. Must be at least 1.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events?perPage=25&page=1",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "1a5b7462-b612-3b6d-b206-2e573e6c1b86",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/events\/latest",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events\/latest",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events\/latest",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "c94ec2cb-d93b-3442-bf18-7593d02b3838",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/events",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "fc06e73f-abd6-3dce-b793-d2c89b6810fa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-events\/{automationTestWebhookEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEvent_uuid",
                                    "key": "automationTestWebhookEvent_uuid",
                                    "value": "70beb847-c495-3973-8d5c-5c499690ec6e",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-events\/{automationTestWebhookEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-events\/:automationTestWebhookEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationTestWebhookEvent_uuid",
                                    "key": "automationTestWebhookEvent_uuid",
                                    "value": "25f643d7-ff57-33a6-968b-fa20de770b7f",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-inbox\/setup",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-inbox\/setup",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-inbox\/setup",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Automation Test Inbox\",\"resetEvents\":false,\"rotateSecret\":true,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440010\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU-001\",\"description\":\"Main control unit for section A\",\"collectorTypeSlug\":\"ncu\",\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440123\",\"serial\":\"NCU-2025-001234\",\"enabled\":true,\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440001\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/summary",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"serial\":\"NCU-2025-001234\",\"deviceModelTypeSlug\":\"ncu-x100-001\",\"hardwareVersionTypeSlug\":\"v1-0-0\",\"manufacturedAt\":\"2025-01-15\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/bulk-register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/bulk-register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/bulk-register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"devices\":[{\"serial\":\"NCU-2025-001234\",\"deviceModelTypeSlug\":\"ncu-x100-001\",\"hardwareVersionTypeSlug\":\"v1-0-0\",\"manufacturedAt\":\"2025-01-15\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collectors\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU-001 Updated\",\"description\":\"Updated control unit for section A\",\"collectorTypeSlug\":\"tcu\",\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440123\",\"serial\":\"NCU-2025-001234\",\"enabled\":true,\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440001\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collectors\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/{collector_uuid}\/status-history",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/status-history",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/status-history",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collectors\/{collector_uuid}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/status",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"testing\",\"reason\":\"Moving to testing phase after QA review\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/{collector_uuid}\/timeline",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/timeline",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/timeline",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/collectors\/{collector_uuid}\/transfer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/transfer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/transfer",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"targetCompanySlug\":\"acme-solar\",\"reason\":\"Customer contract change\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/unassigned-collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/unassigned-collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/unassigned-collectors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/{collector_uuid}\/assign",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/assign",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parentCollectorUuid\":\"550e8400-e29b-41d4-a716-446655440321\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/{collector_uuid}\/unlink",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/unlink",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/unlink",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/sa\/collectors\/{collector_uuid}\/change-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/change-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/change-type",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorTypeSlug\":\"tcu\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Assign a warranty to a collector.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/warranty",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/warranty",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"warrantyTypeSlug\":\"standard-two-year\",\"warrantyStart\":\"2026-02-17\",\"warrantyEnd\":\"2028-02-17\",\"notes\":\"Coverage includes actuator and controller board.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/farms",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/farms",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Solar Farm Alpha\",\"description\":\"Main solar installation in the northern region\",\"companySlug\":\"solar-energy-corp\",\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/farms\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/farms\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Solar Farm Alpha Updated\",\"description\":\"Updated solar installation details\",\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/farms\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Bulk assign collectors to a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/collectors\/bulk-assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/collectors\/bulk-assign",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The UUID of the farm."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorUuids\":[\"550e8400-e29b-41d4-a716-446655440001\",\"550e8400-e29b-41d4-a716-446655440002\"]}"
                        },
                        "description": "Assign multiple collectors to a farm in a single request.\nCollectors must belong to the same company as the farm."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Assigned 5 collector(s) to farm\",\n  \"data\": {\n    \"assigned\": 5,\n    \"skipped\": 2,\n    \"collectors\": [...]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List sections for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/sections",
                            "query": [
                                {
                                    "key": "enabled_only",
                                    "value": "1",
                                    "description": "Filter to only enabled sections.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Results per page (max 100).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/sections?enabled_only=1&page=1&perPage=25",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "vero",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true},{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/sections",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "reprehenderit",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field\",\"description\":\"Northern section of the farm\",\"enabled\":true,\"orderColumn\":1,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Primary section\"}}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "veritatis",
                                    "description": "The UUID of the section"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "labore",
                                    "description": "The UUID of the section"
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Updated\",\"description\":\"Updated description\",\"enabled\":false,\"orderColumn\":2,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Updated notes\"}}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "voluptatum",
                                    "description": "The UUID of the section"
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk assign collectors to section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid\/collectors\/bulk-assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid\/collectors\/bulk-assign",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorUuids\":[\"550e8400-e29b-41d4-a716-446655440001\",\"550e8400-e29b-41d4-a716-446655440002\"]}"
                        },
                        "description": "Assigns multiple collectors to a specific farm section. The farm is derived\nfrom the section automatically. Collectors already on this farm+section are skipped."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\": {\"assigned\": 2, \"skipped\": 1, \"collectors\": [...]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"error\": \"Section not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\": \"Validation failed\", \"errors\": {\"collectorUuids\": [\"At least one collector UUID is required\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List trackers for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers",
                            "query": [
                                {
                                    "key": "sectionUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440001",
                                    "description": "Filter by section UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "isCurrent",
                                    "value": "1",
                                    "description": "Filter by current status.",
                                    "disabled": false
                                },
                                {
                                    "key": "placed",
                                    "value": "1",
                                    "description": "Filter by placement status.",
                                    "disabled": false
                                },
                                {
                                    "key": "sectioned",
                                    "value": "1",
                                    "description": "Filter by section assignment.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Results per page (max 200).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers?sectionUuid=550e8400-e29b-41d4-a716-446655440001&isCurrent=1&placed=1&sectioned=1&perPage=50",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "architecto",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}},{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get tracker statistics for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/stats",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "est",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"totalCurrent\": 150,\n  \"totalHistoric\": 45,\n  \"placed\": 120,\n  \"unplaced\": 30,\n  \"sectioned\": 100,\n  \"unsectioned\": 50,\n  \"placementPercentage\": 80.0\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get section statistics for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/section-stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/section-stats",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "consequuntur",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"sections\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"name\": \"North Field\",\n      \"slug\": \"north-field\",\n      \"enabled\": true,\n      \"orderColumn\": 1,\n      \"trackerCount\": 50,\n      \"placedCount\": 45,\n      \"unplacedCount\": 5\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk update trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/bulk-update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/bulk-update",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "qui",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tracker_uuids\":[\"550e8400-e29b-41d4-a716-446655440001\"],\"row\":5,\"column\":10,\"width_m\":\"6.0\",\"height_m\":\"2.5\",\"angle_deg\":\"15.0\",\"farm_section_uuid\":\"550e8400-e29b-41d4-a716-446655440002\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Updated 10 trackers\",\n  \"count\": 10\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Auto-place trackers in a grid",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "hic",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"section_uuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"tracker_uuids\":[\"550e8400-e29b-41d4-a716-446655440002\"],\"start_row\":1,\"start_column\":1,\"gap_width_m\":\"1.0\",\"gap_height_m\":\"1.0\",\"columns_per_row\":10,\"angle_deg\":\"0.0\",\"apply\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Trackers placed successfully\",\n  \"applied\": true,\n  \"count\": 25,\n  \"placements\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440002\",\n      \"collectorUuid\": \"550e8400-e29b-41d4-a716-446655440003\",\n      \"row\": 1,\n      \"column\": 1,\n      \"angleDeg\": 0.0\n    }\n  ],\n  \"section\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"name\": \"North Field\",\n    \"slug\": \"north-field\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Auto-place unplaced trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place-unplaced",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place-unplaced",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "tempore",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"section_uuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"start_row\":1,\"start_column\":1,\"columns_per_row\":10,\"apply\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Unplaced trackers filled successfully\",\n  \"applied\": true,\n  \"count\": 15,\n  \"placements\": [...]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Validate layout for conflicts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/validate-layout",
                            "query": [
                                {
                                    "key": "sectionUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440001",
                                    "description": "Optional section UUID filter.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/validate-layout?sectionUuid=550e8400-e29b-41d4-a716-446655440001",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "tempore",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"valid\": false,\n  \"totalTrackers\": 150,\n  \"conflicts\": 2,\n  \"duplicates\": [\n    {\n      \"row\": 5,\n      \"column\": 10,\n      \"farmSectionUuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"trackerUuids\": [\"uuid1\", \"uuid2\"]\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Resolve overlapping trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/resolve-overlaps",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/resolve-overlaps",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "laboriosam",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sectionUuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"apply\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Resolved 2 overlapping tracker(s)\",\n  \"data\": {\n    \"applied\": true,\n    \"resolvedCount\": 2,\n    \"remainingConflictCount\": 0,\n    \"placements\": [\n      {\n        \"trackerUuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n        \"collectorUuid\": \"550e8400-e29b-41d4-a716-446655440002\",\n        \"previousRow\": 1,\n        \"previousColumn\": 1,\n        \"newRow\": 1,\n        \"newColumn\": 2\n      }\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Snap trackers to a section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/snap-to-section",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/snap-to-section",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "ipsam",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sectionUuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"trackerUuids\":[\"550e8400-e29b-41d4-a716-446655440002\"],\"startRow\":1,\"startColumn\":1,\"columnsPerRow\":10,\"apply\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Snapped 5 tracker(s) to section North Field\",\n  \"data\": {\n    \"applied\": true,\n    \"count\": 5,\n    \"sectionUuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"sectionName\": \"North Field\",\n    \"placements\": [...]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List trackers across farms (optionally filtered by farm UUID)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/trackers",
                            "query": [
                                {
                                    "key": "farmUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Optional farm UUID filter.",
                                    "disabled": false
                                },
                                {
                                    "key": "sectionUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440001",
                                    "description": "Filter by section UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "isCurrent",
                                    "value": "1",
                                    "description": "Filter by current status.",
                                    "disabled": false
                                },
                                {
                                    "key": "placed",
                                    "value": "1",
                                    "description": "Filter by placement status.",
                                    "disabled": false
                                },
                                {
                                    "key": "sectioned",
                                    "value": "1",
                                    "description": "Filter by section assignment.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Results per page (max 200).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/trackers?farmUuid=550e8400-e29b-41d4-a716-446655440000&sectionUuid=550e8400-e29b-41d4-a716-446655440001&isCurrent=1&placed=1&sectioned=1&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"farmUuid\":\"6ee6e883-9af7-369c-8b35-cdc3041bffaf\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}},{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a single tracker",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/trackers\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/trackers\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "a205ee53-a5ce-4ecf-8103-d1ace6488432",
                                    "description": ""
                                },
                                {
                                    "id": "tracker",
                                    "key": "tracker",
                                    "value": "consequatur",
                                    "description": "The UUID of the tracker"
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"row\":5,\"column\":10,\"widthM\":\"6.0\",\"heightM\":\"2.5\",\"angleDeg\":\"15.0\",\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440002\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Tracker updated successfully\",\n  \"data\": {\n    \"trackerUuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"layout\": {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"row\": 5,\n      \"column\": 10,\n      \"widthM\": 6.0,\n      \"heightM\": 2.5,\n      \"angleDeg\": 15.0,\n      \"farmSectionUuid\": \"550e8400-e29b-41d4-a716-446655440002\"\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete (end) a single tracker",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/trackers\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/trackers\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "a205ee53-a5ce-4ecf-8103-d1ace6488432",
                                    "description": ""
                                },
                                {
                                    "id": "tracker",
                                    "key": "tracker",
                                    "value": "repudiandae",
                                    "description": "The UUID of the tracker"
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Tracker not found\"\n}",
                            "name": "Not Found"
                        }
                    ]
                },
                {
                    "name": "Copy collector locations to trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/trackers\/copy-locations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/trackers\/copy-locations"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tracker_uuids\":[\"550e8400-e29b-41d4-a716-446655440001\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Copied locations for 10 trackers\",\n  \"count\": 10\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/data-unit-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "celsius",
                                    "description": "Search by name, slug, or description. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "dataTypeSlug",
                                    "value": "numeric",
                                    "description": "Filter by data type slug. The slug of an existing record in the data_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types?enabled=1&search=celsius&dataTypeSlug=numeric&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/data-unit-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"celsius\",\"name\":\"Celsius\",\"unit\":\"\u00b0C\",\"description\":\"Temperature in degrees Celsius\",\"dataTypeSlug\":\"numeric\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/data-unit-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/data-unit-types\/{dataUnit_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "variable": [
                                {
                                    "id": "dataUnit_slug",
                                    "key": "dataUnit_slug",
                                    "value": "unknown",
                                    "description": "The slug of the dataUnit."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/data-unit-types\/{dataUnit_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "variable": [
                                {
                                    "id": "dataUnit_slug",
                                    "key": "dataUnit_slug",
                                    "value": "unknown",
                                    "description": "The slug of the dataUnit."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"celsius-updated\",\"name\":\"Celsius Updated\",\"unit\":\"\u00b0C\",\"description\":\"Updated temperature description\",\"dataTypeSlug\":\"numeric\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/data-unit-types\/{dataUnit_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "variable": [
                                {
                                    "id": "dataUnit_slug",
                                    "key": "dataUnit_slug",
                                    "value": "unknown",
                                    "description": "The slug of the dataUnit."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-measurement-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types?enabled=1&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collector-measurement-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"temperature\",\"name\":\"Temperature\",\"description\":\"Ambient temperature measurement\",\"dataUnitSlug\":\"celsius\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-measurement-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/collector-measurement-types\/{collectorMeasurementType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "variable": [
                                {
                                    "id": "collectorMeasurementType_slug",
                                    "key": "collectorMeasurementType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorMeasurementType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collector-measurement-types\/{collectorMeasurementType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "variable": [
                                {
                                    "id": "collectorMeasurementType_slug",
                                    "key": "collectorMeasurementType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorMeasurementType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"temperature-updated\",\"name\":\"Temperature Updated\",\"description\":\"Updated ambient temperature measurement\",\"dataUnitSlug\":\"celsius\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collector-measurement-types\/{collectorMeasurementType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "variable": [
                                {
                                    "id": "collectorMeasurementType_slug",
                                    "key": "collectorMeasurementType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorMeasurementType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types?enabled=1&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collector-parameter-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"tracking-mode\",\"name\":\"Tracking Mode\",\"description\":\"Collector tracking mode configuration\",\"dataUnitSlug\":\"string\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true,\"isReadOnly\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-types\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collector-parameter-types\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"tracking-mode-updated\",\"name\":\"Tracking Mode Updated\",\"description\":\"Updated collector tracking mode configuration\",\"dataUnitSlug\":\"string\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true,\"isReadOnly\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collector-parameter-types\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-validation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "collectorParameterTypeSlug",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules?enabled=1&orderBy=collectorParameterTypeSlug&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collector-parameter-validation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorParameterTypeSlug\":\"tracking-mode\",\"minValueDecimal\":0,\"maxValueDecimal\":100,\"stringRegex\":\"^[a-zA-Z]+$\",\"defaultValue\":\"auto\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-validation-rules\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collector-parameter-validation-rules\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorParameterTypeSlug\":\"tracking-mode\",\"minValueDecimal\":0,\"maxValueDecimal\":100,\"stringRegex\":\"^[a-zA-Z]+$\",\"defaultValue\":\"manual\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collector-parameter-validation-rules\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/collector-parameter-validation-rules\/validate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/validate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/validate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/device-model-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. The slug of an existing record in the collector_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types?enabled=1&collectorTypeSlug=ncu&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/device-model-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"ncu-v3\",\"name\":\"NCU Version 3\",\"description\":\"Network Control Unit version 3 with advanced features\",\"manufacturerTypeSlug\":\"tracklab\",\"collectorTypeSlug\":\"ncu\",\"capabilities\":{\"wifi\":\"true\",\"channels\":\"8\"},\"orderColumn\":1,\"enabled\":true,\"hardwareVersionSlugs\":[{\"slug\":\"voluptas\",\"isPrimary\":false,\"notes\":\"nisi\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/device-model-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/device-model-types\/{deviceModelType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types\/:deviceModelType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types\/:deviceModelType_slug",
                            "variable": [
                                {
                                    "id": "deviceModelType_slug",
                                    "key": "deviceModelType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the deviceModelType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/device-model-types\/{deviceModelType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types\/:deviceModelType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types\/:deviceModelType_slug",
                            "variable": [
                                {
                                    "id": "deviceModelType_slug",
                                    "key": "deviceModelType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the deviceModelType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"ncu-v3-updated\",\"name\":\"NCU Version 3 Updated\",\"description\":\"Updated Network Control Unit version 3\",\"manufacturerTypeSlug\":\"tracklab\",\"collectorTypeSlug\":\"ncu\",\"capabilities\":{\"wifi\":\"true\",\"channels\":\"8\"},\"orderColumn\":1,\"enabled\":true,\"hardwareVersionSlugs\":[{\"slug\":\"qui\",\"isPrimary\":true,\"notes\":\"placeat\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/device-model-types\/{deviceModelType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types\/:deviceModelType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types\/:deviceModelType_slug",
                            "variable": [
                                {
                                    "id": "deviceModelType_slug",
                                    "key": "deviceModelType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the deviceModelType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/manufacturer-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/manufacturer-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "tracklab",
                                    "description": "Search by name\/slug. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/manufacturer-types?enabled=1&search=tracklab&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/manufacturer-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/manufacturer-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/manufacturer-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"tracklab\",\"name\":\"TrackLab\",\"description\":\"Solar tracking systems manufacturer\",\"websiteUrl\":\"https:\\\/\\\/tracklab.com\",\"supportEmail\":\"support@tracklab.com\",\"supportUrl\":\"https:\\\/\\\/tracklab.com\\\/support\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/manufacturer-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/manufacturer-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/manufacturer-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/manufacturer-types\/{manufacturerType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/manufacturer-types\/:manufacturerType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/manufacturer-types\/:manufacturerType_slug",
                            "variable": [
                                {
                                    "id": "manufacturerType_slug",
                                    "key": "manufacturerType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the manufacturerType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/manufacturer-types\/{manufacturerType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/manufacturer-types\/:manufacturerType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/manufacturer-types\/:manufacturerType_slug",
                            "variable": [
                                {
                                    "id": "manufacturerType_slug",
                                    "key": "manufacturerType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the manufacturerType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"tracklab\",\"name\":\"TrackLab\",\"description\":\"TrackLab supported manufacturer\",\"websiteUrl\":\"https:\\\/\\\/tracklab.example\",\"supportEmail\":\"support@tracklab.example\",\"supportUrl\":\"https:\\\/\\\/tracklab.example\\\/support\",\"orderColumn\":10,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/manufacturer-types\/{manufacturerType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/manufacturer-types\/:manufacturerType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/manufacturer-types\/:manufacturerType_slug",
                            "variable": [
                                {
                                    "id": "manufacturerType_slug",
                                    "key": "manufacturerType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the manufacturerType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/hardware-version-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/hardware-version-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "1.0",
                                    "description": "Search by version\/slug. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/hardware-version-types?enabled=1&search=1.0&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/hardware-version-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/hardware-version-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/hardware-version-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"v1-0-0\",\"version\":\"1.0.0\",\"description\":\"Initial production release\",\"releaseDate\":\"2024-01-15\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/hardware-version-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/hardware-version-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/hardware-version-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/hardware-version-types\/{hardwareVersionType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/hardware-version-types\/:hardwareVersionType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/hardware-version-types\/:hardwareVersionType_slug",
                            "variable": [
                                {
                                    "id": "hardwareVersionType_slug",
                                    "key": "hardwareVersionType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the hardwareVersionType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/hardware-version-types\/{hardwareVersionType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/hardware-version-types\/:hardwareVersionType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/hardware-version-types\/:hardwareVersionType_slug",
                            "variable": [
                                {
                                    "id": "hardwareVersionType_slug",
                                    "key": "hardwareVersionType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the hardwareVersionType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"ncu-v2\",\"version\":\"2.0.0\",\"description\":\"Second generation NCU hardware\",\"releaseDate\":\"2025-01-01\",\"orderColumn\":10,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/hardware-version-types\/{hardwareVersionType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/hardware-version-types\/:hardwareVersionType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/hardware-version-types\/:hardwareVersionType_slug",
                            "variable": [
                                {
                                    "id": "hardwareVersionType_slug",
                                    "key": "hardwareVersionType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the hardwareVersionType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/capability-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/capability-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "category",
                                    "value": "power",
                                    "description": "Filter by capability category. Must not be greater than 100 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "valueType",
                                    "value": "boolean",
                                    "description": "Filter by value type.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "tracking",
                                    "description": "Search by name\/slug. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/capability-types?enabled=1&category=power&valueType=boolean&search=tracking&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/capability-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/capability-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/capability-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"wifi\",\"name\":\"WiFi\",\"description\":\"WiFi connectivity support\",\"valueType\":\"boolean\",\"defaultValue\":\"true\",\"category\":\"communication\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/capability-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/capability-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/capability-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/capability-types\/categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/capability-types\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/capability-types\/categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/capability-types\/{capabilityType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/capability-types\/:capabilityType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/capability-types\/:capabilityType_slug",
                            "variable": [
                                {
                                    "id": "capabilityType_slug",
                                    "key": "capabilityType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the capabilityType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/capability-types\/{capabilityType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/capability-types\/:capabilityType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/capability-types\/:capabilityType_slug",
                            "variable": [
                                {
                                    "id": "capabilityType_slug",
                                    "key": "capabilityType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the capabilityType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"supports-tracking\",\"name\":\"Supports tracking\",\"description\":\"Whether the device supports tracking mode\",\"valueType\":\"boolean\",\"defaultValue\":\"false\",\"category\":\"tracking\",\"orderColumn\":10,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/capability-types\/{capabilityType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/capability-types\/:capabilityType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/capability-types\/:capabilityType_slug",
                            "variable": [
                                {
                                    "id": "capabilityType_slug",
                                    "key": "capabilityType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the capabilityType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/device-commands\/{collector_uuid}\/raw",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-commands\/:collector_uuid\/raw",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-commands\/:collector_uuid\/raw",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"command\":{\"setParameter\":{\"key\":\"reporting_interval\",\"value\":60}},\"parameters\":{\"reporting_interval\":60},\"ttl\":3600,\"serial\":\"49344\",\"type\":\"tcu\",\"commandId\":\"cmd_f70f6a8a-c6a3-4516-a2e7-3c2f79f7fdbf\",\"timestamp\":\"2026-03-10T14:37:21+00:00\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Broadcast Parameter Update",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-commands\/:collector_uuid\/broadcast-parameters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-commands\/:collector_uuid\/broadcast-parameters",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "voluptatem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "labore",
                                    "description": "The UUID of the NCU collector"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parameters\":[]}"
                        },
                        "description": "Send a single MQTT broadcast command to all child TCUs of an NCU,\nwhile storing parameters locally per-child-TCU."
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/device-groups",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/device-groups",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors\",\"description\":\"All collectors in section A of the farm\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\"],\"siteUuids\":[\"5e9209f0-6f0a-3573-9633-cca8252cbaee\"],\"collectorUuids\":[\"850ceb8c-efb6-37a2-ab58-2595b954bfc6\"],\"excludeCollectorUuids\":[\"5f972c15-e894-3d6e-a8a9-3f0fea8d305e\"]},\"collectorUuids\":[\"b6016f92-20cd-364d-8d28-7002e1b328e5\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors Updated\",\"description\":\"Updated collectors in section A\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\",\"ncu-v3\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\",\"550e8400-e29b-41d4-a716-446655440001\"],\"siteUuids\":[\"2760712f-f33a-39cf-b48e-a7ae0a05cb83\"],\"collectorUuids\":[\"5612056a-f9e0-367a-baab-f8bdc17906d3\"],\"excludeCollectorUuids\":[\"789e8fbd-1245-376f-a857-a06ba078458d\"]},\"collectorUuids\":[\"5af15533-a953-3628-80ed-835369769e08\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors Updated\",\"description\":\"Updated collectors in section A\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\",\"ncu-v3\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\",\"550e8400-e29b-41d4-a716-446655440001\"],\"siteUuids\":[\"f512f5c3-8a0d-3eb1-b457-4c6358e2b708\"],\"collectorUuids\":[\"d83cb1b2-bc05-3292-bb7d-bfbea5691082\"],\"excludeCollectorUuids\":[\"753076ae-d0a6-37af-81a2-06822657f22a\"]},\"collectorUuids\":[\"bda2fbd0-8a97-3c4d-a6be-f495d4bcbab9\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"add\",\"collectorUuids\":[\"58b56c17-ceb9-34aa-b130-ff17655808c8\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}\/parameters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/parameters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/parameters",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parameters\":[\"quibusdam\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all document library sections.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new document library section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Technical Manuals\",\"description\":\"Technical documentation and user manuals for all product lines.\",\"enabled\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update an existing document library section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Technical Manuals\",\"description\":\"Technical documentation and user manuals for all product lines.\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a document library section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload an icon image for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"quasi\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove the icon from a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Reorder document library sections.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/reorder"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"orderedUuids\":[\"cbdf75b6-054e-323b-a7e5-a1e5c1aace2f\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all categories for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new category within a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Installation Guides\",\"description\":\"Step-by-step installation guides for field technicians.\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update an existing category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Installation Guides\",\"description\":\"Step-by-step installation guides for field technicians.\",\"enabled\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload an icon image for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"quo\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove the icon from a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Reorder categories within a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/reorder",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"orderedUuids\":[\"57c6c7cf-91fe-31af-978c-30d088d09f9a\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Move a category to a different section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/move",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/move",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sectionUuid\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all documents for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload a new document into a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name",
                                    "value": "NCU Installation Manual v2.1",
                                    "type": "text",
                                    "description": "The display name of the document. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Complete installation and commissioning guide for NCU v2 units.",
                                    "type": "text",
                                    "description": "An optional description of the document. Must not be greater than 2000 characters."
                                },
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Whether the document is visible to non-SA users. Defaults to true."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload an icon image for a document record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"aliquid\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove the icon from a document record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update document metadata.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU Installation Manual v2.1\",\"description\":\"Complete installation and commissioning guide for NCU v2 units.\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Move a document to a different category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/move",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/move",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"categoryUuid\":\"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/companies\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/companies\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Production Farm Key\",\"description\":\"Key for firmware updates on production farm\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"expiresAt\":\"2025-12-31\",\"isActive\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Updated Farm Key\",\"description\":\"Updated key description\",\"expiresAt\":\"2026-06-30\",\"isActive\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}\/deactivate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List available firmware versions (global scope)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceModelTypeSlug\":\"ncu-v2\",\"enabled\":true,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload new firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "version",
                                    "value": "v1.2.3",
                                    "type": "text",
                                    "description": "Semantic version of the firmware. Must match the regex \/^v?\\d+\\.\\d+\\.\\d+(?:-[0-9A-Za-z.-]+)?(?:\\+[0-9A-Za-z.-]+)?$\/. Must not be greater than 50 characters."
                                },
                                {
                                    "key": "deviceModelTypeSlug",
                                    "value": "ncu-v2",
                                    "type": "text",
                                    "description": "Slug of the target device model type. The <code>slug<\/code> of an existing record in the device_model_types table."
                                },
                                {
                                    "key": "name",
                                    "value": "NCU Firmware v1.2.3",
                                    "type": "text",
                                    "description": "Display name for the firmware. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Bug fixes and performance improvements",
                                    "type": "text",
                                    "description": "Description of the firmware release. Must not be greater than 1000 characters."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show firmware details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update firmware metadata",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tokenRequired\":true,\"name\":\"NCU Controller Firmware\",\"description\":\"Firmware package for NCU controller devices\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Enable\/disable firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:firmware_slug\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:firmware_slug\/toggle",
                            "variable": [
                                {
                                    "id": "firmware_slug",
                                    "key": "firmware_slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete firmware (soft delete)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440111\",\"notificationChannelType\":\"email\",\"name\":\"Ops Email Alerts\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "5b105651-0526-3010-ad80-86292241a56a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "038f9437-6e0a-3d4e-a906-120c090cd04a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"name\":\"Operations Alerts\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "279a6dc4-1fad-326c-9349-2caddf0c716a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}\/emails",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/emails",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/emails",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "1163b49a-6198-3694-bda0-e1689ab776c8",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"emailAddress\":\"alerts@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}\/push-devices",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/push-devices",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/push-devices",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "aef46103-4a9c-360e-bae8-50e1230772ed",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"mobileDeviceUuid\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}\/webhooks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/webhooks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid\/webhooks",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "6d932ebe-8359-36a8-b14a-3cb6edf96e15",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"PagerDuty Webhook\",\"url\":\"https:\\\/\\\/hooks.example.com\\\/alerts\",\"httpMethod\":\"POST\",\"timeoutSeconds\":30}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/notification-channel-emails\/{notificationChannelEmail_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channel-emails\/:notificationChannelEmail_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channel-emails\/:notificationChannelEmail_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelEmail_uuid",
                                    "key": "notificationChannelEmail_uuid",
                                    "value": "e0b7a569-47e5-3c8f-b81e-2a5e448dc7ea",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/notification-channel-push-devices\/{notificationChannelPushDevice_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channel-push-devices\/:notificationChannelPushDevice_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channel-push-devices\/:notificationChannelPushDevice_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelPushDevice_uuid",
                                    "key": "notificationChannelPushDevice_uuid",
                                    "value": "3f7be72d-c40e-3fa6-84dd-638e7d2e06e0",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/sa\/c\/{company_slug}\/notification-channel-webhooks\/{notificationChannelWebhook_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhook_uuid",
                                    "key": "notificationChannelWebhook_uuid",
                                    "value": "3bbf2398-fd74-394e-bacb-8d083acd35f9",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"PagerDuty Webhook\",\"url\":\"https:\\\/\\\/hooks.example.com\\\/alerts\",\"httpMethod\":\"PATCH\",\"timeoutSeconds\":20}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/notification-channel-webhooks\/{notificationChannelWebhook_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhook_uuid",
                                    "key": "notificationChannelWebhook_uuid",
                                    "value": "483928be-c9b2-3f3a-a935-91db7122145a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-channel-webhooks\/{notificationChannelWebhook_uuid}\/headers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid\/headers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channel-webhooks\/:notificationChannelWebhook_uuid\/headers",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhook_uuid",
                                    "key": "notificationChannelWebhook_uuid",
                                    "value": "ab50a064-ea7e-3753-8ace-43afac5c8e34",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headerKey\":\"X-Signature\",\"headerValue\":\"secret-token\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/notification-channel-webhook-headers\/{notificationChannelWebhookHeader_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channel-webhook-headers\/:notificationChannelWebhookHeader_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channel-webhook-headers\/:notificationChannelWebhookHeader_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannelWebhookHeader_uuid",
                                    "key": "notificationChannelWebhookHeader_uuid",
                                    "value": "157d2dd2-8446-3497-9aea-fd77c886e93b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/notification-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/notification-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"text\",\"name\":\"Critical Alert Template\",\"subjectTemplate\":\"[Alert] Collector Offline\",\"bodyTemplate\":\"Alert: Collector went offline at Farm Alpha.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"html\",\"name\":\"Updated Alert Template\",\"subjectTemplate\":\"[Updated] Collector Offline\",\"bodyTemplate\":\"<p>Alert rule updated for Collector Alpha.<\\\/p>\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440121\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440122\",\"name\":\"Critical Weather Policy\",\"enabled\":true,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440123\",\"notificationTemplateUuid\":\"550e8400-e29b-41d4-a716-446655440124\",\"labels\":[{\"key\":\"severity\",\"value\":\"critical\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-policies\/{notificationPolicy_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationPolicy_uuid",
                                    "key": "notificationPolicy_uuid",
                                    "value": "c1aadfba-d134-39bc-81dd-59e4908424a8",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/c\/{company_slug}\/notification-policies\/{notificationPolicy_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationPolicy_uuid",
                                    "key": "notificationPolicy_uuid",
                                    "value": "e6630c00-22af-337d-9145-3fdaaf1de5c5",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Critical Weather Policy\",\"enabled\":false,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440223\",\"notificationTemplateUuid\":\"550e8400-e29b-41d4-a716-446655440224\",\"labels\":[{\"key\":\"site\",\"value\":\"north-farm\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/notification-policies\/{notificationPolicy_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationPolicy_uuid",
                                    "key": "notificationPolicy_uuid",
                                    "value": "be92bc27-4678-37a7-9f9f-47a291426fd4",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Quality report: failure counts grouped by device model, firmware, and hardware version.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/quality-report",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/quality-report"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Inventory summary: per-company collector status counts.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/inventory",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/inventory"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all RMA requests across all companies.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a single RMA request with full relations.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "45b5efde-3007-3729-a62e-3a0fba81e7c4",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the status of an RMA request (intermediate workflow statuses).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "36365a40-9087-317c-bbe5-cdc58798e181",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"diagnosing\",\"notes\":\"Device received and initial electrical diagnostics started.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Approve an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid\/approve",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid\/approve",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "46ca4f95-c49a-3b46-abac-69260e5e53f3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Reject an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid\/reject",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid\/reject",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "f070a0d3-a2bc-3ff2-a1ce-f1ba751e25e2",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"Submitted issue does not meet warranty criteria.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Resolve an RMA request (repaired, replaced, or unrepairable).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid\/resolve",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid\/resolve",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "e8922168-c61a-3a33-8e79-36961435022c",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"resolutionType\":\"replaced\",\"notes\":\"Unit replaced after diagnostics confirmed controller board failure.\",\"replacementCollectorUuid\":\"550e8400-e29b-41d4-a716-446655440110\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Cancel an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid\/cancel",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "53f90334-6d28-30b3-a6b7-e201a9bd8ad6",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"zhwwvcrzrsxe\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List notes for an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid\/notes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid\/notes",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "e8a91e50-fd41-333a-9176-14f226639c56",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a note to an RMA request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/rma\/:rmaRequest_uuid\/notes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/rma\/:rmaRequest_uuid\/notes",
                            "variable": [
                                {
                                    "id": "rmaRequest_uuid",
                                    "key": "rmaRequest_uuid",
                                    "value": "469c3b67-1671-3c4a-9423-cf89774f0d86",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"note\":\"Customer confirmed issue is reproducible after reboot.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/tracklab\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/tracklab\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"new.user@tracklab.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/tracklab\/users\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/tracklab\/users\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"updated.user@tracklab.com\",\"firstName\":\"John\",\"lastName\":\"Smith\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1987654321\",\"role\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/tracklab\/users\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"f15fa89b-89be-3528-808e-63b2ed28fef4\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List warranties expiring within N days.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/warranty\/expiring",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/warranty\/expiring"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/health",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/health",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/health"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "must-revalidate, no-cache, no-store, post-check=0, pre-check=0, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"finishedAt\":1780291958,\"checkResults\":[]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/firmware\/download",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/firmware\/download",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/firmware\/download"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 400,
                            "body": "{\n    \"message\": \"Firmware slug required\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/firmware\/download\/{token}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/firmware\/download\/:token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/firmware\/download\/:token",
                            "variable": [
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "ut",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 400,
                            "body": "{\n    \"message\": \"Firmware slug required\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Download measurements using a signed link without authentication.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/open\/c\/:company_slug\/measurements",
                            "query": [
                                {
                                    "key": "types[0]",
                                    "value": "ex",
                                    "description": "The slug of an existing record in the collector_measurement_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2025-01-01T00%3A00%3A00Z",
                                    "description": "Start timestamp (ISO 8601). Must be a valid date. Must be a date before now.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "saepe",
                                    "description": "The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d",
                                    "description": "Filter by farm UUID. The uuid of an existing record in the farms table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa",
                                    "description": "Filter by farm section UUID. The uuid of an existing record in the farm_sections table.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. The slug of an existing record in the collector_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2025-01-02T00%3A00%3A00Z",
                                    "description": "End timestamp (ISO 8601). Must be a valid date. Must be a date after from.",
                                    "disabled": false
                                },
                                {
                                    "key": "raw",
                                    "value": "",
                                    "description": "When true, returns raw measurements without aggregation.",
                                    "disabled": true
                                },
                                {
                                    "key": "period",
                                    "value": "minute",
                                    "description": "Aggregation period type slug (when raw=false). The slug of an existing record in the period_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "avg",
                                    "description": "Aggregation method slug (enabled aggregation types only). The slug of an existing record in the measurement_aggregation_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "0",
                                    "description": "Minimum measurement value filter.",
                                    "disabled": true
                                },
                                {
                                    "key": "valueMax",
                                    "value": "1000",
                                    "description": "Maximum measurement value filter.",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "measurement_type",
                                    "description": "Group results by dimension.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeMetadata",
                                    "value": "1",
                                    "description": "Include measurement type \/ collector metadata.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeReplacements",
                                    "value": "",
                                    "description": "When querying by collector UUIDs, include collector history on the same tracker(s) across handovers.",
                                    "disabled": true
                                },
                                {
                                    "key": "includeCount",
                                    "value": "",
                                    "description": "Include total record count per group.",
                                    "disabled": true
                                },
                                {
                                    "key": "exportType",
                                    "value": "json",
                                    "description": "Optional export format.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination. Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "100",
                                    "description": "Items per page (max 10000). Must be at least 1. Must not be greater than 10000.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/open\/c\/:company_slug\/measurements?types[0]=ex&from=2025-01-01T00%3A00%3A00Z&collectorUuids[0]=saepe&farmUuid=d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d&farmSectionUuid=3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa&collectorTypeSlug=ncu&to=2025-01-02T00%3A00%3A00Z&raw=&period=minute&aggregation=avg&valueMin=0&valueMax=1000&groupBy=measurement_type&includeMetadata=1&includeReplacements=&includeCount=&exportType=json&page=1&perPage=100",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid signature.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/open\/mcp\/c\/{company_slug}\/collector-graph\/{format}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/open\/mcp\/c\/:company_slug\/collector-graph\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/open\/mcp\/c\/:company_slug\/collector-graph\/:format",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "unde",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "30"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "28"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid signature.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Profile Picture (Signed URL)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/profile\/picture\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "eyJpdiI6...",
                                    "description": "The encrypted signed token."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "square-48-webp",
                                    "description": "The image format\/conversion name."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a user's profile picture using a signed URL token.\nThe token contains encrypted user UUID and expiry timestamp.\n\nURL format: \/me\/profile\/picture\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The image file stream",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"message\": \"Invalid or expired token.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"User not found.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/email\/verify\/{id}\/{hash}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/verify\/:id\/:hash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/verify\/:id\/:hash",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "autem",
                                    "description": "The ID of the verify."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "doloremque",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "6"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "4"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\"success\":false,\"message\":\"Invalid verification link\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Serve a section icon via signed token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:sectionUuid\/icon\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:sectionUuid\/icon\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "sectionUuid",
                                    "key": "sectionUuid",
                                    "value": "ae7201fc-1e29-3df8-baf1-39877f78bc65",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "delectus",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "laborum",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "URL: \/api\/v1\/doc-lib\/sections\/{sectionUuid}\/icon\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid or expired token.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Serve a category icon via signed token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/categories\/:categoryUuid\/icon\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/categories\/:categoryUuid\/icon\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "categoryUuid",
                                    "key": "categoryUuid",
                                    "value": "8c224d2c-e566-359b-a1fb-7934d50b0aa4",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "non",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "laboriosam",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "URL: \/api\/v1\/doc-lib\/categories\/{categoryUuid}\/icon\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid or expired token.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Serve a document icon via signed token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/documents\/:documentSectionDocumentUuid\/icon\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/documents\/:documentSectionDocumentUuid\/icon\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "documentSectionDocumentUuid",
                                    "key": "documentSectionDocumentUuid",
                                    "value": "a82fe448-1157-33a8-99df-f53ddd6e8fff",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "veniam",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "et",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "URL: \/api\/v1\/doc-lib\/documents\/{documentSectionDocumentUuid}\/icon\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid or expired token.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Serve a document file via signed token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/documents\/:documentSectionDocumentUuid\/:signedToken\/:format\/file",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/documents\/:documentSectionDocumentUuid\/:signedToken\/:format\/file",
                            "variable": [
                                {
                                    "id": "documentSectionDocumentUuid",
                                    "key": "documentSectionDocumentUuid",
                                    "value": "00af8b13-633f-3c7c-8017-d6dfbcfbe46e",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "occaecati",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "odit",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "URL: \/api\/v1\/doc-lib\/documents\/{documentSectionDocumentUuid}\/{signedToken}\/{format}\/file"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid or expired token.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{companySlug}\/automation\/webhooks\/{automationInboundWebhookSource_uuid}\/ingest",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:companySlug\/automation\/webhooks\/:automationInboundWebhookSource_uuid\/ingest",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:companySlug\/automation\/webhooks\/:automationInboundWebhookSource_uuid\/ingest",
                            "variable": [
                                {
                                    "id": "companySlug",
                                    "key": "companySlug",
                                    "value": "ullam",
                                    "description": ""
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "921ba92b-39a8-3818-a14b-f585afc88ea9",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{companySlug}\/automation\/test\/webhook-endpoints\/{automationTestWebhookEndpoint_uuid}\/ingest",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:companySlug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/ingest",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:companySlug\/automation\/test\/webhook-endpoints\/:automationTestWebhookEndpoint_uuid\/ingest",
                            "variable": [
                                {
                                    "id": "companySlug",
                                    "key": "companySlug",
                                    "value": "distinctio",
                                    "description": ""
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "fe901eff-4cf4-3761-ba2e-dc1cd949989b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/type\/automation-action-failure-mode",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-action-failure-mode",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "wggwhlywidjjjjb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mktuuxkaowkxytfwrfcepvkyp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "zqrfouqzbztst",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-action-failure-mode?page=1&perPage=20&sort=wggwhlywidjjjjb&sortBy=mktuuxkaowkxytfwrfcepvkyp&sortOrder=desc&filter[]=&filter.search=zqrfouqzbztst&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-failure-mode?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-failure-mode?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-failure-mode?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-failure-mode\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-action-target",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-action-target",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "zhsxaehsdnzznunuekablq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nukslhlucpqmeexw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "zulfjtshva",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-action-target?page=1&perPage=20&sort=zhsxaehsdnzznunuekablq&sortBy=nukslhlucpqmeexw&sortOrder=asc&filter[]=&filter.search=zulfjtshva&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-target?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-target?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-target?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action-target\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-action",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-action",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "fcuyz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "oioosxn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "obce",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-action?page=1&perPage=20&sort=fcuyz&sortBy=oioosxn&sortOrder=asc&filter[]=&filter.search=obce&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-action\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-condition-group-operator",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-condition-group-operator",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "pcalkc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "pslm",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "sjuqvsa",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-condition-group-operator?page=1&perPage=20&sort=pcalkc&sortBy=pslm&sortOrder=desc&filter[]=&filter.search=sjuqvsa&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-group-operator?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-group-operator?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-group-operator?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-group-operator\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-condition-operator",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-condition-operator",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "dwyadmm",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ucmjohpttjrpebwtlvvaaxb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "resbtod",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-condition-operator?page=1&perPage=20&sort=dwyadmm&sortBy=ucmjohpttjrpebwtlvvaaxb&sortOrder=desc&filter[]=&filter.search=resbtod&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-operator?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-operator?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-operator?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-condition-operator\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-event-source",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-event-source",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "ikwmyrdinvcmzwuxbdfc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "syspcmfrlwhnaqrvjy",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "zbczvunlhzuleilqom",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-event-source?page=1&perPage=20&sort=ikwmyrdinvcmzwuxbdfc&sortBy=syspcmfrlwhnaqrvjy&sortOrder=asc&filter[]=&filter.search=zbczvunlhzuleilqom&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-source?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-source?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-source?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-source\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-event-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-event-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "blox",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qfhhnnhgiaeoiucpnqanbmkw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "vhqiuz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-event-status?page=1&perPage=20&sort=blox&sortBy=qfhhnnhgiaeoiucpnqanbmkw&sortOrder=desc&filter[]=&filter.search=vhqiuz&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-event-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-execution-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-execution-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "omqdppk",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "c",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "j",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-execution-status?page=1&perPage=20&sort=omqdppk&sortBy=c&sortOrder=asc&filter[]=&filter.search=j&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-execution-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-execution-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-execution-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-execution-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-match-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-match-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "mjpwotalxphha",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ffa",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "shuafhwrddixnfajekdhiuv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-match-status?page=1&perPage=20&sort=mjpwotalxphha&sortBy=ffa&sortOrder=asc&filter[]=&filter.search=shuafhwrddixnfajekdhiuv&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-match-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-match-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-match-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-match-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-rule-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-rule-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "nfurumzgwu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "afvl",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "fowolvwsosnzqx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-rule-status?page=1&perPage=20&sort=nfurumzgwu&sortBy=afvl&sortOrder=desc&filter[]=&filter.search=fowolvwsosnzqx&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-rule-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-rule-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-rule-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-rule-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-trigger-subject",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-trigger-subject",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "tegrtqkwvblijzbpmb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nmtdoegjmryklgat",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "gwgdrepnzhtbakkscockiiqp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-trigger-subject?page=1&perPage=20&sort=tegrtqkwvblijzbpmb&sortBy=nmtdoegjmryklgat&sortOrder=desc&filter[]=&filter.search=gwgdrepnzhtbakkscockiiqp&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-weather-metric",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-weather-metric",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "rcxgupgsaczcixyzseudck",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ooaffcbfhhsnvtpxkkcrsdaze",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "olpuxjpnhkorsyjkxisvvs",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-weather-metric?page=1&perPage=20&sort=rcxgupgsaczcixyzseudck&sortBy=ooaffcbfhhsnvtpxkkcrsdaze&sortOrder=desc&filter[]=&filter.search=olpuxjpnhkorsyjkxisvvs&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-webhook-auth",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-webhook-auth",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "vljkrmknwh",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "khlylskqlxgydw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "rnsorohqhyfdawfxbgncqszis",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-webhook-auth?page=1&perPage=20&sort=vljkrmknwh&sortBy=khlylskqlxgydw&sortOrder=desc&filter[]=&filter.search=rnsorohqhyfdawfxbgncqszis&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-webhook-auth?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-webhook-auth?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-webhook-auth?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/automation-webhook-auth\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/collector",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/collector",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "jvbxjqgwcqitobezvalfinqs",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qnfzshwywxyivpoe",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "ujllxjvtjejddq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/collector?page=1&perPage=20&sort=jvbxjqgwcqitobezvalfinqs&sortBy=qnfzshwywxyivpoe&sortOrder=asc&filter[]=&filter.search=ujllxjvtjejddq&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/collector-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/collector-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "lwlzywaloroa",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nzxfnpbyqzyhuwlr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "lbibhkttplrdejsohv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/collector-status?page=1&perPage=20&sort=lwlzywaloroa&sortBy=nzxfnpbyqzyhuwlr&sortOrder=asc&filter[]=&filter.search=lbibhkttplrdejsohv&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/collector-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/company-contact",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/company-contact",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "ldkshzzeykqr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xvqehegdllndpkn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "oavurrhxjcfzgxpbll",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/company-contact?page=1&perPage=20&sort=ldkshzzeykqr&sortBy=xvqehegdllndpkn&sortOrder=desc&filter[]=&filter.search=oavurrhxjcfzgxpbll&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-contact?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-contact?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-contact?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-contact\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/company-link-invite-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/company-link-invite-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "zxjzlqujs",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "epvznwj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "abgaqetfr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/company-link-invite-status?page=1&perPage=20&sort=zxjzlqujs&sortBy=epvznwj&sortOrder=desc&filter[]=&filter.search=abgaqetfr&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-invite-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-invite-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-invite-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-invite-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/company-link-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/company-link-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "qvmpoahldtbnbpikaa",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "iuayqacilznmconczlb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "wuprd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/company-link-status?page=1&perPage=20&sort=qvmpoahldtbnbpikaa&sortBy=iuayqacilznmconczlb&sortOrder=desc&filter[]=&filter.search=wuprd&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/company-link-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/data-deletion-audit-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data-deletion-audit-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "wkiqqgdhgmnnehitbsummmarw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mevp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "lypdbsqqawrwzlyaokrknqy",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data-deletion-audit-status?page=1&perPage=20&sort=wkiqqgdhgmnnehitbsummmarw&sortBy=mevp&sortOrder=asc&filter[]=&filter.search=lypdbsqqawrwzlyaokrknqy&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-deletion-audit-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-deletion-audit-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-deletion-audit-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-deletion-audit-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/data-retention-data",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data-retention-data",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "thhzergfykreknfzgg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ejqtquxzhqbjm",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "axglypvplq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data-retention-data?page=1&perPage=20&sort=thhzergfykreknfzgg&sortBy=ejqtquxzhqbjm&sortOrder=asc&filter[]=&filter.search=axglypvplq&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-retention-data?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-retention-data?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-retention-data?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/data-retention-data\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/device-message-processing-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/device-message-processing-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "buyitbmspdwiymmn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nfubddve",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "byvzgremzgxcddr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/device-message-processing-status?page=1&perPage=20&sort=buyitbmspdwiymmn&sortBy=nfubddve&sortOrder=desc&filter[]=&filter.search=byvzgremzgxcddr&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/device-message-processing-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/device-message-processing-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/device-message-processing-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/device-message-processing-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/failure",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/failure",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "hxfoxfq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ncrivlntbdpp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "oapflorcmc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/failure?page=1&perPage=20&sort=hxfoxfq&sortBy=ncrivlntbdpp&sortOrder=desc&filter[]=&filter.search=oapflorcmc&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/failure?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/failure?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/failure?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/failure\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/invitation-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/invitation-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "qpnvvtjvlggg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mkgoeblunizigauatjkqmz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "zclhwa",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/invitation-status?page=1&perPage=20&sort=qpnvvtjvlggg&sortBy=mkgoeblunizigauatjkqmz&sortOrder=asc&filter[]=&filter.search=zclhwa&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/invitation-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/invitation-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/invitation-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/invitation-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/ip",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/ip",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "yawtabca",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xur",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "rrmcmgzhj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/ip?page=1&perPage=20&sort=yawtabca&sortBy=xur&sortOrder=desc&filter[]=&filter.search=rrmcmgzhj&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/ip?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/ip?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/ip?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/ip\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mime-type-list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mime-type-list",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "btpmijtiurgng",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "umibakfogx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "jigkp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mime-type-list?page=1&perPage=20&sort=btpmijtiurgng&sortBy=umibakfogx&sortOrder=asc&filter[]=&filter.search=jigkp&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mime-type-list?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mime-type-list?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mime-type-list?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mime-type-list\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-app-version",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-app-version",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "tohdv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "wkiwabtxhvyahch",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "ylttlhvlmgsfi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-app-version?page=1&perPage=20&sort=tohdv&sortBy=wkiwabtxhvyahch&sortOrder=asc&filter[]=&filter.search=ylttlhvlmgsfi&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-app-version?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-app-version?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-app-version?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-app-version\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-audit-action",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-audit-action",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "cuxhgomh",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "zsuexfpvogdzetpsuk",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "kxcirntbn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-audit-action?page=1&perPage=20&sort=cuxhgomh&sortBy=zsuexfpvogdzetpsuk&sortOrder=desc&filter[]=&filter.search=kxcirntbn&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-action?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-action?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-action?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-action\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-audit-connection",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-audit-connection",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "gcdpusnhtrnmjmrlakvsb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "dxbig",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "fhouexwnuvxbua",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-audit-connection?page=1&perPage=20&sort=gcdpusnhtrnmjmrlakvsb&sortBy=dxbig&sortOrder=asc&filter[]=&filter.search=fhouexwnuvxbua&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-connection?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-connection?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-connection?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-connection\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-audit-event",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-audit-event",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "ymfrkjbpqwvf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ubkyszd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "xzqnwbised",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-audit-event?page=1&perPage=20&sort=ymfrkjbpqwvf&sortBy=ubkyszd&sortOrder=desc&filter[]=&filter.search=xzqnwbised&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-event?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-event?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-event?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-event\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-audit-result-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-audit-result-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "zyyipjjltjmsppjlekchpx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "erhnuagymbpuhiqjob",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "euuqxqzrrqv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-audit-result-status?page=1&perPage=20&sort=zyyipjjltjmsppjlekchpx&sortBy=erhnuagymbpuhiqjob&sortOrder=desc&filter[]=&filter.search=euuqxqzrrqv&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-result-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-result-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-result-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-audit-result-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-build-number",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-build-number",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "gpsijceapakr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "trcjvygr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "ecowobf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-build-number?page=1&perPage=20&sort=gpsijceapakr&sortBy=trcjvygr&sortOrder=desc&filter[]=&filter.search=ecowobf&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-build-number?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-build-number?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-build-number?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-build-number\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-device-model",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-device-model",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "llj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ogzlfsgvgxay",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "ftcijzrkrhusho",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-device-model?page=1&perPage=20&sort=llj&sortBy=ogzlfsgvgxay&sortOrder=asc&filter[]=&filter.search=ftcijzrkrhusho&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-device-model?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-device-model?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-device-model?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-device-model\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-operator-label",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-operator-label",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "tzhfaxofclzmws",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "whkrppnqyerrukl",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "nffnxw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-operator-label?page=1&perPage=20&sort=tzhfaxofclzmws&sortBy=whkrppnqyerrukl&sortOrder=desc&filter[]=&filter.search=nffnxw&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-operator-label?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-operator-label?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-operator-label?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-operator-label\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-os-version",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-os-version",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "cl",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "bsupwfvmvvyyhnxdo",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "ajtkln",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-os-version?page=1&perPage=20&sort=cl&sortBy=bsupwfvmvvyyhnxdo&sortOrder=asc&filter[]=&filter.search=ajtkln&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-os-version?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-os-version?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-os-version?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-os-version\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/mobile-platform",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/mobile-platform",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "qnhalqsdftj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "wrmdpajstynr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "sznylkkxrzjxoa",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-platform?page=1&perPage=20&sort=qnhalqsdftj&sortBy=wrmdpajstynr&sortOrder=asc&filter[]=&filter.search=sznylkkxrzjxoa&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-platform?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-platform?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-platform?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/mobile-platform\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/note",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/note",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "pgefzijexvmxxalhqqfxhciik",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xrmzxofzagzgn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "wmcepnujdu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/note?page=1&perPage=20&sort=pgefzijexvmxxalhqqfxhciik&sortBy=xrmzxofzagzgn&sortOrder=desc&filter[]=&filter.search=wmcepnujdu&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/note?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/note?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/note?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/note\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/notification-channel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/notification-channel",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "sowndlutmyoattnu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "sybnfxvcledmsosjllez",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "tvy",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/notification-channel?page=1&perPage=20&sort=sowndlutmyoattnu&sortBy=sybnfxvcledmsosjllez&sortOrder=asc&filter[]=&filter.search=tvy&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-channel?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-channel?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-channel?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-channel\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/notification-delivery-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/notification-delivery-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "rxvkkibjfjtbc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "vhhdemcleggrxgxgof",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "booi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/notification-delivery-status?page=1&perPage=20&sort=rxvkkibjfjtbc&sortBy=vhhdemcleggrxgxgof&sortOrder=asc&filter[]=&filter.search=booi&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-delivery-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-delivery-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-delivery-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-delivery-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/notification-template-format",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/notification-template-format",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "hbzqyddmkxz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "cpeod",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "annrjckb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/notification-template-format?page=1&perPage=20&sort=hbzqyddmkxz&sortBy=cpeod&sortOrder=asc&filter[]=&filter.search=annrjckb&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-template-format?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-template-format?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-template-format?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/notification-template-format\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/permission",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/permission",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "xhawsruqsm",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "zuqcpyyubfpzvtyjlhr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "panrtdbgvekplq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/permission?page=1&perPage=20&sort=xhawsruqsm&sortBy=zuqcpyyubfpzvtyjlhr&sortOrder=desc&filter[]=&filter.search=panrtdbgvekplq&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/rma-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/rma-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "yoacfqmzdvxrbvgesuwqxmh",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "cvneogegcsbcjohwfqaqpb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "csaxrzvll",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/rma-status?page=1&perPage=20&sort=yoacfqmzdvxrbvgesuwqxmh&sortBy=cvneogegcsbcjohwfqaqpb&sortOrder=asc&filter[]=&filter.search=csaxrzvll&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/rma-status?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/rma-status?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/rma-status?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/rma-status\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/role",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "bzqdnmpdorzteirqreoxvgi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "hxyjbficntz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "uhbulkhrwdi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/role?page=1&perPage=20&sort=bzqdnmpdorzteirqreoxvgi&sortBy=hxyjbficntz&sortOrder=desc&filter[]=&filter.search=uhbulkhrwdi&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/user-address",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/user-address",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "ukjadskf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "noc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "dmlahzekhqvrfseyty",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/user-address?page=1&perPage=20&sort=ukjadskf&sortBy=noc&sortOrder=desc&filter[]=&filter.search=dmlahzekhqvrfseyty&filter.active=1&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/user-address?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/user-address?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/user-address?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/user-address\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/warranty",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/warranty",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "lzzjuyaqnxmtqmb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "rpw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "asc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "rkhkqifkfhm",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/warranty?page=1&perPage=20&sort=lzzjuyaqnxmtqmb&sortBy=rpw&sortOrder=asc&filter[]=&filter.search=rkhkqifkfhm&filter.active=&filter.enabled="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/warranty?page=1\",\"last\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/warranty?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/warranty?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/tl.haakdev.com\\\/api\\\/v1\\\/type\\\/warranty\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Country Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/country",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/country"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"isoCode\":\"\",\"isoThreeCode\":\"\",\"name\":\"Unknown\",\"officialName\":\"Unknown\",\"emoji\":\"\",\"enabled\":true,\"isActive\":false},{\"isoCode\":\"\",\"isoThreeCode\":\"\",\"name\":\"Unknown\",\"officialName\":\"Unknown\",\"emoji\":\"\",\"enabled\":true,\"isActive\":false}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Detailed Country Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/country\/detailed",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/country\/detailed"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"isoCode\":\"\",\"isoThreeCode\":\"\",\"isoNumeric\":0,\"name\":\"Unknown\",\"officialName\":\"Unknown\",\"emoji\":\"\",\"enabled\":true,\"isActive\":false,\"latitude\":0,\"longitude\":0,\"latitudeMin\":0,\"latitudeMax\":0,\"longitudeMin\":0,\"longitudeMax\":0,\"currencies\":[{\"code\":\"UNKNOWN\",\"name\":\"Unknown\",\"symbol\":\"\\u0192\",\"decimalPlaces\":0,\"isActive\":false}],\"languages\":[{\"code\":null,\"name\":\"Unknown\",\"nativeName\":null,\"isActive\":false}],\"timezones\":[{\"identifier\":\"Unknown\",\"name\":\"Unknown\",\"utcOffset\":0,\"isActive\":false}]},{\"isoCode\":\"\",\"isoThreeCode\":\"\",\"isoNumeric\":0,\"name\":\"Unknown\",\"officialName\":\"Unknown\",\"emoji\":\"\",\"enabled\":true,\"isActive\":false,\"latitude\":0,\"longitude\":0,\"latitudeMin\":0,\"latitudeMax\":0,\"longitudeMin\":0,\"longitudeMax\":0,\"currencies\":[{\"code\":\"UNKNOWN\",\"name\":\"Unknown\",\"symbol\":\"\\u0192\",\"decimalPlaces\":0,\"isActive\":false}],\"languages\":[{\"code\":null,\"name\":\"Unknown\",\"nativeName\":null,\"isActive\":false}],\"timezones\":[{\"identifier\":\"Unknown\",\"name\":\"Unknown\",\"utcOffset\":0,\"isActive\":false}]}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Single Country Full Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/country\/:isoCode",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/country\/:isoCode",
                            "variable": [
                                {
                                    "id": "isoCode",
                                    "key": "isoCode",
                                    "value": "ZA",
                                    "description": "The ISO 3166-1 alpha-2 country code."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"isoCode\":\"\",\"isoThreeCode\":\"\",\"isoNumeric\":0,\"name\":\"Unknown\",\"officialName\":\"Unknown\",\"emoji\":\"\",\"enabled\":true,\"isActive\":false,\"latitude\":0,\"longitude\":0,\"latitudeMin\":0,\"latitudeMax\":0,\"longitudeMin\":0,\"longitudeMax\":0,\"continent\":{\"name\":\"None\"},\"currencies\":[{\"code\":\"UNKNOWN\",\"name\":\"Unknown\",\"symbol\":\"\\u0192\",\"decimalPlaces\":0,\"isActive\":false}],\"languages\":[{\"code\":null,\"name\":\"Unknown\",\"nativeName\":null,\"isActive\":false}],\"timezones\":[{\"identifier\":\"Unknown\",\"name\":\"Unknown\",\"utcOffset\":0,\"isActive\":false}],\"regions\":[{\"name\":\"Unknown\",\"isActive\":false}],\"extras\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Data Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"},{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"}]}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"slug\": \"numeric\",\n      \"name\": \"Numeric\",\n      \"description\": \"Numeric data type\"\n    },\n    {\n      \"slug\": \"string\",\n      \"name\": \"String\",\n      \"description\": \"String data type\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Data Unit Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data\/units",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data\/units"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"dataTypeSlug\":\"unknown\",\"name\":\"Unknown\",\"unit\":\"\",\"description\":\"\"},{\"slug\":\"unknown\",\"dataTypeSlug\":\"unknown\",\"name\":\"Unknown\",\"unit\":\"\",\"description\":\"\"}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Parameter Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data\/parameter",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data\/parameter"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"Unknown\",\"description\":\"\",\"dataUnitSlug\":\"unknown\",\"dataTypeSlug\":\"unknown\",\"unit\":\"\",\"orderColumn\":0,\"enabled\":true,\"isReadOnly\":false,\"collectorTypeSlug\":null,\"validation\":[],\"lookups\":null},{\"slug\":\"unknown\",\"name\":\"Unknown\",\"description\":\"\",\"dataUnitSlug\":\"unknown\",\"dataTypeSlug\":\"unknown\",\"unit\":\"\",\"orderColumn\":0,\"enabled\":true,\"isReadOnly\":false,\"collectorTypeSlug\":null,\"validation\":[],\"lookups\":null}]}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"slug\": \"battery_level\",\n      \"dataUnitSlug\": \"percentage\",\n      \"dataTypeSlug\": \"numeric\",\n      \"unit\": \"%\",\n      \"name\": \"Battery Level\",\n      \"description\": \"Device battery level\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Measurement Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data\/measurement",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data\/measurement"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all available measurement types for collectors."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"name\": \"Temperature\",\n      \"slug\": \"temperature\",\n      \"description\": \"Temperature measurements\",\n      \"data_type\": {\n        \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n        \"name\": \"Numeric\",\n        \"slug\": \"numeric\"\n      },\n      \"data_unit\": {\n        \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n        \"name\": \"Celsius\",\n        \"slug\": \"celsius\",\n        \"symbol\": \"\u00b0C\"\n      }\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/data\/measurement-aggregation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data\/measurement-aggregation",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data\/measurement-aggregation"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":{\"avg\":{\"slug\":\"avg\",\"name\":\"Average\",\"description\":\"Mean + stddev + kurtosis (default)\",\"orderColumn\":1,\"requiresNumericData\":true},\"median\":{\"slug\":\"median\",\"name\":\"Median\",\"description\":\"Median (50th percentile)\",\"orderColumn\":2,\"requiresNumericData\":true},\"min\":{\"slug\":\"min\",\"name\":\"Minimum\",\"description\":\"Minimum value in bucket\",\"orderColumn\":3,\"requiresNumericData\":true},\"max\":{\"slug\":\"max\",\"name\":\"Maximum\",\"description\":\"Maximum value in bucket\",\"orderColumn\":4,\"requiresNumericData\":true},\"sum\":{\"slug\":\"sum\",\"name\":\"Sum\",\"description\":\"Sum of all values\",\"orderColumn\":5,\"requiresNumericData\":true},\"count\":{\"slug\":\"count\",\"name\":\"Count\",\"description\":\"Number of data points\",\"orderColumn\":6,\"requiresNumericData\":false},\"first\":{\"slug\":\"first\",\"name\":\"First\",\"description\":\"First value by timestamp\",\"orderColumn\":7,\"requiresNumericData\":false},\"last\":{\"slug\":\"last\",\"name\":\"Last\",\"description\":\"Last value by timestamp\",\"orderColumn\":8,\"requiresNumericData\":false}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/data\/period",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data\/period",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data\/period"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"none\",\"name\":\"No Aggregation\",\"interval\":\"00:00:01\",\"order\":-10},{\"slug\":\"1-minute\",\"name\":\"1 Minute\",\"interval\":\"00:01:00\",\"order\":0},{\"slug\":\"10-minutes\",\"name\":\"10 Minutes\",\"interval\":\"00:10:00\",\"order\":10},{\"slug\":\"1-hour\",\"name\":\"1 Hour\",\"interval\":\"01:00:00\",\"order\":20},{\"slug\":\"4-hours\",\"name\":\"4 Hours\",\"interval\":\"04:00:00\",\"order\":30},{\"slug\":\"12-hours\",\"name\":\"12 Hours\",\"interval\":\"12:00:00\",\"order\":40},{\"slug\":\"1-day\",\"name\":\"1 Day\",\"interval\":\"1 day\",\"order\":50},{\"slug\":\"1-week\",\"name\":\"1 Week\",\"interval\":\"7 days\",\"order\":60},{\"slug\":\"1-month\",\"name\":\"1 Month\",\"interval\":\"1 mon\",\"order\":70}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/data\/environment",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data\/environment",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data\/environment"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":{\"production\":{\"slug\":\"production\",\"name\":\"Production\",\"description\":\"Production environment\"},\"staging\":{\"slug\":\"staging\",\"name\":\"Staging\",\"description\":\"Staging environment\"},\"development\":{\"slug\":\"development\",\"name\":\"Development\",\"description\":\"Development environment\"}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/data\/device-message-processing-error",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/data\/device-message-processing-error",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data\/device-message-processing-error"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":{\"collector-not-found\":{\"slug\":\"collector-not-found\",\"name\":\"Collector Not Found\",\"description\":\"No collector found for the given serial number\"},\"database-error\":{\"slug\":\"database-error\",\"name\":\"Database Error\",\"description\":\"Database operation failed during processing\"},\"invalid-message-structure\":{\"slug\":\"invalid-message-structure\",\"name\":\"Invalid Message Structure\",\"description\":\"Message JSON structure is invalid or missing required fields\"},\"json-parsing-error\":{\"slug\":\"json-parsing-error\",\"name\":\"JSON Parsing Error\",\"description\":\"Failed to parse message JSON\"},\"measurement-type-not-found\":{\"slug\":\"measurement-type-not-found\",\"name\":\"Measurement Type Not Found\",\"description\":\"Measurement type slug not found in measurement types table\"},\"parameter-type-not-found\":{\"slug\":\"parameter-type-not-found\",\"name\":\"Parameter Type Not Found\",\"description\":\"Parameter type slug not found in parameter types table\"}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get User Status Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/user-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/user-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all enabled user status types ordered by order_column."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"pending\",\"name\":\"Pending\",\"enabled\":true,\"orderColumn\":1},{\"slug\":\"pending\",\"name\":\"Pending\",\"enabled\":true,\"orderColumn\":1}]}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"slug\": \"pending\",\n      \"name\": \"Pending\",\n      \"enabled\": true,\n      \"orderColumn\": 1\n    },\n    {\n      \"slug\": \"active\",\n      \"name\": \"Active\",\n      \"enabled\": true,\n      \"orderColumn\": 2\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Handle an incoming registration request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companyName\":\"My Awesome Company\",\"firstName\":\"Jane\",\"lastName\":\"Smith\",\"email\":\"jane.smith@example.com\",\"password\":\"StrongPass123!@#\",\"countryIsoCode\":\"GB\",\"phoneNumber\":\"+447123456789\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Handle an incoming password reset link request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/forgot-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/forgot-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"status\":\"We have emailed your password reset link.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"email\":[\"We can't find a user with that email address.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Handle an incoming new password request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reset-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reset-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"...\",\"email\":\"user@example.com\",\"password\":\"NewSecurePass123!\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"status\":\"Your password has been reset.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"email\":[\"We can't find a user with that email address.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mark the user's email address as verified.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/verify-email\/:id\/:hash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/verify-email\/:id\/:hash",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "omnis",
                                    "description": "The ID of the verify email."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "labore",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "location",
                                    "value": "https:\/\/tl.haakdev.com\/emailVerification?error=invalid&msg=Invalid+verification+link"
                                },
                                {
                                    "key": "content-type",
                                    "value": "text\/html; charset=utf-8"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "6"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "1"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6Im1TZ1V2ZWNhd3RXYXMxQi9MbjRTcnc9PSIsInZhbHVlIjoiUlUvNkl3eUZmMEVBaDF1SHlRUlNaNG1wWkQ4Slg5eE1UZ2NqM0F1Z3hyVmwvSnZVUDk0S0l4eFlOb3hsOGRpeEpRdjErZnhnM1hyZ3FEc09kWEdKQXNxT2o0UWd5OUR5ZnFRRHlFdFhsRnducHQzMlorN3pDcjJaS0NGV2lvSjAiLCJtYWMiOiI1ODViMTkyYzg0NDNhMjQyNjYwNmZjZTllYmY1MWI5MmRmYjY3Nzg4ZDBlYjNhOTBhNGJhYzc4NzgzYWI3ZGIxIiwidGFnIjoiIn0%3D; expires=Mon, 01 Jun 2026 07:32:39 GMT; Max-Age=7200; path=\/; domain=tl.haakdev.com; secure; samesite=lax; tracklab_session=eyJpdiI6IlJYcDIyQ2FpcDV3d0R5b0dsSExWRFE9PSIsInZhbHVlIjoiTWR0d0creFM1WkhMWnBIU1Y1ek9PZjRVVHVwSmhzV08xa1NhWUViazdTR1hnT2M1Y1NoN2pZbmJ0ODBvRXlsMkFnYTJVejllU3NGbzYyUmlMQTlPV0QzYVJkK05rU1V0ZDRpaUYvdXU3UWtRMlA2U1VJdlpGcHlzTW9HUTQxR2IiLCJtYWMiOiI0MjgwMDAzODJiN2JiOGEzOGViMjZlN2Q5YWM5Yzc2YzQwNjBlM2RmMmM1YjNlYzE1YjlmYzkzYTk4NGMwZjhlIiwidGFnIjoiIn0%3D; expires=Mon, 01 Jun 2026 07:32:39 GMT; Max-Age=7200; path=\/; domain=tl.haakdev.com; secure; httponly; samesite=lax"
                                }
                            ],
                            "code": 302,
                            "body": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"UTF-8\" \/>\n        <meta http-equiv=\"refresh\" content=\"0;url='https:\/\/tl.haakdev.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link'\" \/>\n\n        <title>Redirecting to https:\/\/tl.haakdev.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link<\/title>\n    <\/head>\n    <body>\n        Redirecting to <a href=\"https:\/\/tl.haakdev.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link\">https:\/\/tl.haakdev.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link<\/a>.\n    <\/body>\n<\/html>",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Invitations",
            "description": "",
            "item": [
                {
                    "name": "Get invitation details by token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invitations\/:token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invitations\/:token",
                            "variable": [
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "aut",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Public endpoint - no authentication required.\nReturns invitation details for display before acceptance."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"email\":\"user@example.com\",\"companyName\":\"Example Company\",\"roleName\":\"user\",\"invitedBy\":\"John Doe\",\"status\":\"pending\",\"validUntil\":\"2026-01-27T12:00:00Z\",\"isExpired\":false}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Accept an invitation.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/invitations\/:token\/accept",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/invitations\/:token\/accept",
                            "variable": [
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "alias",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Requires authentication. Adds the authenticated user to the company\nwith the pre-assigned role from the invitation."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":null,\"email\":null,\"status\":null,\"roleSlug\":null,\"invitedBy\":{\"uuid\":null,\"name\":null},\"validUntil\":\"2026-06-01T05:32:38+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-06-01T05:32:38+00:00\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin - Activity Logs",
            "description": "",
            "item": [
                {
                    "name": "List all activity logs (global scope).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/activity-logs",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "sa.device-model-type",
                                    "description": "Filter by event category (e.g., \"sa.device-model-type\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "create",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "User",
                                    "description": "Filter by affected model type (short name, e.g., \"User\", \"Farm\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "companySlug",
                                    "value": "acme-corp",
                                    "description": "Filter by the company slug affected by the activity. The slug of an existing record in the companies table.",
                                    "disabled": false
                                },
                                {
                                    "key": "impersonatorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the admin who was impersonating during the action. Must be a valid UUID. The uuid of an existing record in the users table.",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "firmware",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "created_at",
                                    "description": "Field to sort by (created_at, event, description, log_name).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/activity-logs?page=1&perPage=25&event=sa.device-model-type&action=create&logName=default&subjectType=User&causerUuid=550e8400-e29b-41d4-a716-446655440000&companySlug=acme-corp&impersonatorUuid=550e8400-e29b-41d4-a716-446655440000&fromDate=2026-01-01&toDate=2026-12-31&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=firmware&sortBy=created_at&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns paginated activity logs with optional filtering by event type,\naction, date range, causer, and other parameters."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get available filter options for activity logs.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/activity-logs\/filter-options",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "sa.device-model-type",
                                    "description": "Filter by event category (e.g., \"sa.device-model-type\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "create",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "User",
                                    "description": "Filter by affected model type (short name, e.g., \"User\", \"Farm\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "companySlug",
                                    "value": "acme-corp",
                                    "description": "Filter by the company slug affected by the activity. The slug of an existing record in the companies table.",
                                    "disabled": false
                                },
                                {
                                    "key": "impersonatorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the admin who was impersonating during the action. Must be a valid UUID. The uuid of an existing record in the users table.",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "firmware",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "created_at",
                                    "description": "Field to sort by (created_at, event, description, log_name).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/activity-logs\/filter-options?page=1&perPage=25&event=sa.device-model-type&action=create&logName=default&subjectType=User&causerUuid=550e8400-e29b-41d4-a716-446655440000&companySlug=acme-corp&impersonatorUuid=550e8400-e29b-41d4-a716-446655440000&fromDate=2026-01-01&toDate=2026-12-31&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=firmware&sortBy=created_at&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns distinct values for events, log names, and subject types\nto populate filter dropdowns in the UI."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Export activity logs.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/activity-logs\/export",
                            "query": [
                                {
                                    "key": "startDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "endDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to startDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "sa.device-model-type",
                                    "description": "Filter by event category (e.g., \"sa.device-model-type\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "create",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "User",
                                    "description": "Filter by affected model type (short name, e.g., \"User\", \"Farm\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "firmware",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "format",
                                    "value": "csv",
                                    "description": "Export format: csv or json (default: json).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/activity-logs\/export?startDate=2026-01-01&endDate=2026-12-31&event=sa.device-model-type&action=create&logName=default&subjectType=User&causerUuid=550e8400-e29b-41d4-a716-446655440000&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=firmware&format=csv"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Exports activity logs with optional filtering. Supports CSV and JSON formats.\nUses streaming for memory-efficient export of large datasets."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin - Company Users",
            "description": "",
            "item": [
                {
                    "name": "Create a new user for the specified company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/users",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"new.user@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove a user from a specific company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Data Retention",
            "description": "",
            "item": [
                {
                    "name": "List all data retention audit records.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/audits",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "completed",
                                    "description": "Filter by audit status (e.g., \"pending\", \"completed\", \"failed\").",
                                    "disabled": false
                                },
                                {
                                    "key": "dataType",
                                    "value": "device-messages",
                                    "description": "Filter by data type (e.g., \"device-messages\").",
                                    "disabled": false
                                },
                                {
                                    "key": "operation",
                                    "value": "delete",
                                    "description": "Filter by operation type (e.g., \"delete\", \"archive\").",
                                    "disabled": false
                                },
                                {
                                    "key": "startedAfter",
                                    "value": "2026-01-01",
                                    "description": "Filter audits started after this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "startedBefore",
                                    "value": "2026-12-31",
                                    "description": "Filter audits started before this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "started_at",
                                    "description": "Field to sort by (started_at, completed_at, created_at, data_type, operation, status, record_count).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/audits?page=1&perPage=25&status=completed&dataType=device-messages&operation=delete&startedAfter=2026-01-01&startedBefore=2026-12-31&sortBy=started_at&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a single data retention audit record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/audits\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/audits\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "cc58b8da-c994-4cf2-a6d7-e7267b267ca2",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List global default retention policies.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/defaults",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/defaults"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List effective retention policies for a company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create or update a company retention policy override.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"dataType\":\"measurement\",\"retentionDays\":365,\"archiveEnabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update a company retention policy override for a specific data type.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "dataRetentionDataType_slug",
                                    "key": "dataRetentionDataType_slug",
                                    "value": "collector-measurements",
                                    "description": "The slug of the dataRetentionDataType."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"retentionDays\":730,\"archiveEnabled\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a company retention policy override, reverting to global default.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "dataRetentionDataType_slug",
                                    "key": "dataRetentionDataType_slug",
                                    "value": "collector-measurements",
                                    "description": "The slug of the dataRetentionDataType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Impersonation",
            "description": "",
            "item": [
                {
                    "name": "Stop the current impersonation session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/stop",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/stop"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get current impersonation status.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Start an impersonation session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/start",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/start"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List active impersonation sessions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/sessions",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "impersonatorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by impersonator user UUID. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "targetUserUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by target user UUID. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "active",
                                    "value": "1",
                                    "description": "Filter by active sessions (default true).",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter sessions starting on\/after this date (ISO 8601). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter sessions starting on\/before this date (ISO 8601). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "startedAt",
                                    "description": "Sort field (startedAt, expiresAt, createdAt).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/sessions?page=1&perPage=25&impersonatorUuid=550e8400-e29b-41d4-a716-446655440000&targetUserUuid=550e8400-e29b-41d4-a716-446655440000&active=1&fromDate=2026-01-01&toDate=2026-12-31&sortBy=startedAt&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Terminate an impersonation session (admin override).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/sessions\/:session_uuid\/terminate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/sessions\/:session_uuid\/terminate",
                            "variable": [
                                {
                                    "id": "session_uuid",
                                    "key": "session_uuid",
                                    "value": "49ff5e66-9c29-31f1-8bca-383d1fa7e34d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - TrackLab Users",
            "description": "",
            "item": [
                {
                    "name": "Send a password reset email to a TrackLab user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/send-password-reset",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/send-password-reset",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Elevate a TrackLab user to super admin status.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/elevate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/elevate",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Revoke super admin status from a TrackLab user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/revoke",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/revoke",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Users",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/sa\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"search\":\"tim\",\"companySlug\":\"tracklab-solar\",\"role\":\"admin\",\"isActive\":true,\"page\":1,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null},{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/role",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/role",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/permissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/permissions",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"updated.user@example.com\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"countryIsoCode\":\"NL\",\"phoneNumber\":\"+31612345678\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/users\/{user_uuid}\/send-password-reset",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/send-password-reset",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/send-password-reset",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/users\/{user_uuid}\/profile\/picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/profile\/picture",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/profile\/picture",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"odit\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/profile\/picture\/{format?}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/profile\/picture\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/profile\/picture\/:format",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "deleniti",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin > Companies",
            "description": "",
            "item": [
                {
                    "name": "List all companies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"search\":\"Solar\",\"enabled\":true,\"perPage\":25,\"page\":1}"
                        },
                        "description": "Returns a paginated list of all companies with optional filtering."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Solar Energy Corp\",\"slug\":\"solar-energy-corp\",\"countryIsoCode\":\"US\"}"
                        },
                        "description": "Creates a new company with the provided details."
                    },
                    "response": []
                },
                {
                    "name": "Get a company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"search\":\"Solar\",\"enabled\":true,\"perPage\":25,\"page\":1}"
                        },
                        "description": "Returns the details of a specific company."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Solar Energy Corp Updated\",\"slug\":\"solar-energy-corp-updated\",\"countryIsoCode\":\"US\",\"enabled\":true}"
                        },
                        "description": "Updates the specified company with the provided details."
                    },
                    "response": []
                },
                {
                    "name": "Disable a company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/disable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/disable",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Disables the specified company. Users of this company will not be able to log in."
                    },
                    "response": []
                },
                {
                    "name": "Enable a company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/enable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/enable",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Enables the specified company. Users of this company will be able to log in again."
                    },
                    "response": []
                },
                {
                    "name": "Delete a company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Soft deletes the specified company."
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/address",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/address",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/address",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"addressString\":\"123 Main St, London SW1A 1AA\",\"addressLine1\":\"123 Main Street\",\"city\":\"London\",\"postCode\":\"SW1A 1AA\",\"countryIsoCode\":\"GB\",\"addressLine2\":\"Apt 4B\",\"neighborhood\":\"Westminster\",\"locality\":\"Central London\",\"place\":\"Piccadilly Circus\",\"district\":\"City of Westminster\",\"region\":\"Greater London\",\"location\":{\"lat\":51.5074,\"long\":-0.1278,\"latitude\":51.5074,\"longitude\":-0.1278}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload or replace a company's logo.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/logo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/logo",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get a company's logo in the requested format.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/logo\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/logo\/:format",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "quisquam",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a company's logo.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/logo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/logo",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get a company's logo using a signed URL token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/logo\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/logo\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "eyJpdiI6...",
                                    "description": "The encrypted signed token."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "square-256-webp",
                                    "description": "The image format\/conversion name."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "demo-gui",
                                    "description": "The company slug."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "The token contains encrypted company slug and expiry timestamp.\nURL format: \/sa\/c\/{companySlug}\/logo\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The image file stream",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"message\": \"Invalid or expired token.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"Company not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin > Mobile Audit Events",
            "description": "",
            "item": [
                {
                    "name": "List mobile audit events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/audit-events",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination. Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of audit events to return per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "companySlug",
                                    "value": "acme-corp",
                                    "description": "Filter audit events to a single company slug. The slug of an existing record in the companies table.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440010",
                                    "description": "Filter audit events to a single collector UUID. Must be a valid UUID. The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "userUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440011",
                                    "description": "Filter audit events to a single user UUID. Must be a valid UUID. The uuid of an existing record in the users table.",
                                    "disabled": false
                                },
                                {
                                    "key": "eventName",
                                    "value": "mobile-ncu",
                                    "description": "Filter by mobile audit event type slug. The slug of an existing record in the mobile_audit_event_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "actionName",
                                    "value": "command-send",
                                    "description": "Filter by mobile audit action type slug. The slug of an existing record in the mobile_audit_action_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "dateFrom",
                                    "value": "2026-03-01T00%3A00%3A00Z",
                                    "description": "Only include audit events that occurred on or after this ISO 8601 timestamp. Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "dateTo",
                                    "value": "2026-03-11T23%3A59%3A59Z",
                                    "description": "Only include audit events that occurred on or before this ISO 8601 timestamp. Must be a valid date. Must be a date after or equal to dateFrom.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/audit-events?page=1&perPage=25&companySlug=acme-corp&collectorUuid=550e8400-e29b-41d4-a716-446655440010&userUuid=550e8400-e29b-41d4-a716-446655440011&eventName=mobile-ncu&actionName=command-send&dateFrom=2026-03-01T00%3A00%3A00Z&dateTo=2026-03-11T23%3A59%3A59Z"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a paginated list of all mobile audit events with optional filtering."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a mobile audit event",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/audit-events\/:auditEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/audit-events\/:auditEvent_uuid",
                            "variable": [
                                {
                                    "id": "auditEvent_uuid",
                                    "key": "auditEvent_uuid",
                                    "value": "9e66f234-5300-38a3-bef3-ce2e305cd7f6",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns full detail for a single mobile audit event including context, request, result, operator label, and device info."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin > Mobile Devices",
            "description": "",
            "item": [
                {
                    "name": "List mobile devices",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/devices",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/devices"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a paginated list of all mobile devices with optional filtering."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a mobile device",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/devices\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/devices\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "91a2dba3-a2bd-4b91-bbe9-fa27c2970489",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns detailed information for a single mobile device including masked push token and audit event count."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin > Routes",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/sa\/admin\/routes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/admin\/routes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/admin\/routes"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"all\":false}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "System",
            "description": "\nAPIs for system testing and health checks",
            "item": [
                {
                    "name": "Test System",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/test\/basic_system",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/test\/basic_system"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Check if the system is working properly. Tests DB + Redis connectivity.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"data\":{\"systemWorking\":true,\"services\":{\"database\":true,\"redis\":true},\"errors\":[]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Device messages pipeline health probe.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/health\/device-messages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/health\/device-messages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "12"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "10"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"ok\",\"oldestPendingSeconds\":0,\"pendingCount\":0,\"lastAlertSentAt\":null,\"degradedSince\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}