{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/qa.tracklabsolar.com"
        }
    ],
    "info": {
        "name": "TrackLab",
        "_postman_id": "225d4acb-c1f5-4f30-bbf0-101c8d51c75a",
        "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\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "10e77dbb-7717-3574-90a7-b60d3b7a3bd9",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tokenUuid\":\"7079ea25-2f0b-35cb-ba50-8091bf6dff09\"}"
                        },
                        "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": "nulla",
                                    "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": "nobis",
                                    "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": "ipsum",
                                    "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": "molestiae",
                                    "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": "quidem",
                                    "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": "ratione",
                                    "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\":\"pariatur\"}"
                        },
                        "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": "maiores",
                                    "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": "ut",
                                    "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\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null},{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "blanditiis",
                                    "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\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"data\":{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "id",
                                    "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"e303c63e-9267-3650-b414-bc384b91bc57\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"20afc2e2-f79f-3cc7-a57c-ada1125f6636\",\"email\":\"john.doe@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"cee0f06d-ceaa-3128-a63e-1774b958162d\"}"
                        },
                        "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"b436ab44-ec68-38d2-b6df-4ca44f197612\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"0efa84a2-a701-3c25-9551-dc8e4f54923a\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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": "d7238472-2ebb-3618-8580-cca548cddd79",
                                    "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=eyJpdiI6IlQ5ejZ3TnJjRU1KblRxUTRrZEttbXc9PSIsInZhbHVlIjoiOW1EeEt6T0w0YURtWTZyZHQ5eEpRY2JBNE0vMlJPUkRBNFQzbWUvVWZDOVBCM3FjM1JmWTM1ZHF3NEdHSlJzancrQzBpWFJzc09vam9hWFpJcHp5Z21qN1pEbVF1RlRRN2NLMXRDMi81M29iRDVZbmRwcnlGRko0OVFGMG4vb3MiLCJtYWMiOiI4OTk1NTI3Y2IxNTRhMDU2MTlhZDJkNmI0NTg0YWIwMDA2ZTlkNWY5ZjAxNTAzZGRlMTBlNTFmZjZjNDZmYjRhIiwidGFnIjoiIn0%3D; expires=Wed, 15 Apr 2026 16:00:54 GMT; Max-Age=7200; path=\/; domain=qa.tracklabsolar.com; secure; samesite=lax; tracklab_session=eyJpdiI6IndkUks0QS93bUI4RkpzS2lNRitGN2c9PSIsInZhbHVlIjoiMmk0SjRlWXR2TW9lczh0NnFSQzAvWVh6cHlOTmRubzlyT1pHY2t6WVlvalA5VTBlVFQ0T25DTFpLOXM0VGNEQlVUbmNwS1FmSDcxWTZmVEU0Z1lHemxkV3pnWkxNK3RuQU4rYWhPeEtxK1dhUnFieUJhbjM4WVg1NENQQnhZUnoiLCJtYWMiOiI4MTlkZDRiYjlkNzI2NDEyNjE2Yjk5MWZhZGM3MTU0YmNjNjllZGNkYzM4ZmRkNzQzMjI2MzA5NjljNjU3MDQwIiwidGFnIjoiIn0%3D; expires=Wed, 15 Apr 2026 16:00:54 GMT; Max-Age=7200; path=\/; domain=qa.tracklabsolar.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": "ut",
                                    "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": "et",
                                    "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": "e2e00000-a070-4e00-a001-000000000001",
                                    "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": "e2e00000-a070-4e00-a001-000000000001",
                                    "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": "e2e00000-a070-4e00-a001-000000000001",
                                    "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": "nulla",
                                    "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": "atque",
                                    "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": "e2e00000-a070-4e00-d001-000000000001",
                                    "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": "e2e00000-a070-4e00-d001-000000000001",
                                    "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": "e2e00000-a070-4e00-d001-000000000001",
                                    "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": "reprehenderit",
                                    "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": "e2e00000-a070-4e00-b001-000000000001",
                                    "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": "distinctio",
                                    "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": "vero",
                                    "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": "e2e00000-a070-4e00-c001-000000000001",
                                    "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": "voluptas",
                                    "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": "deleniti",
                                    "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": "perferendis",
                                    "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": "doloribus",
                                    "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": "doloremque",
                                    "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": "aut",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "42d40fb7-96f4-5fdc-a05d-a1eeab791074",
                                    "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": "42d40fb7-96f4-5fdc-a05d-a1eeab791074",
                                    "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": "eaque",
                                    "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": "inventore",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "sint",
                                    "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": "nihil",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "distinctio",
                                    "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": "sed",
                                    "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": "architecto",
                                    "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": "numquam",
                                    "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": "id",
                                    "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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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": "reprehenderit",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "quia",
                                    "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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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": "cum",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "molestiae",
                                    "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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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": "est",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "facere",
                                    "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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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": "non",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "sed",
                                    "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": "fugiat",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "deleniti",
                                    "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": "consequatur",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "voluptatem",
                                    "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": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "ratione",
                                    "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": "quo",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "nesciunt",
                                    "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": "assumenda",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "ullam",
                                    "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": "mollitia",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "rem",
                                    "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": "nobis",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "nihil",
                                    "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": "ut",
                                    "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": "{\"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": "blanditiis",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "in",
                                    "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": "eum",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "ea",
                                    "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": "soluta",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "in",
                                    "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": "tempore",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "sint",
                                    "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": "rerum",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "nobis",
                                    "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": "9d67ab2e-4062-413c-aed7-2a43942fafb8",
                                    "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\":[\"technician\"],\"farms\":[{\"farmUuid\":\"f40cfdd3-856c-3014-b3bc-ec33fac3b906\",\"roles\":[\"external-support\"]}],\"collectors\":[{\"collectorUuid\":\"4293e4f0-0297-3a43-a36d-1ce864192d38\",\"roles\":[\"owner\"]}]},\"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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "et",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "description": ""
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "description": ""
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ut",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "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": "b8033b32-9539-4db5-b226-603d70d228a5",
                                    "description": ""
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "perferendis",
                                    "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": "1adc2cfc-b369-4dc9-a01d-d58807b82296",
                                    "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": "1adc2cfc-b369-4dc9-a01d-d58807b82296",
                                    "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": "inventore",
                                    "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": "qui",
                                    "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\":[\"f102148f-8b7e-34f6-b20d-10db0e7ddb43\"],\"collectorUuids\":[\"8b336265-0a7c-33a2-b149-9decb326b1c1\"],\"excludeCollectorUuids\":[\"e506bdfa-2ba3-3f3c-a442-fa6ae859c884\"]},\"collectorUuids\":[\"835b2761-fe66-3c51-844e-df614f8e0c8c\"]}"
                        },
                        "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "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\":[\"6e3668d4-b6b4-3134-9e67-7b597acddc26\"],\"collectorUuids\":[\"fc67b361-d72d-35b4-a846-ece05c0e5886\"],\"excludeCollectorUuids\":[\"db304a41-6ce4-37f2-8477-3f244345c908\"]},\"collectorUuids\":[\"eb1ca1b1-04ca-3681-83d0-eae196919355\"]}"
                        },
                        "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"add\",\"collectorUuids\":[\"5dc6c50f-ed91-3a5f-baf8-bb20d4198269\"]}"
                        },
                        "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\":[\"hwscydzeedudmmjnbxpngk\"],\"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\":[\"ausesqtzodsexmneoxmv\"],\"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\":false}"
                        },
                        "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": "modi",
                                    "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\":\"575c9ee0-bf39-4b34-9a15-e40ecdb5ca10\",\"createdAt\":\"2026-01-13T19:11:00+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"Unassigned\",\"description\":\"\",\"location\":null,\"isUnassigned\":true},{\"uuid\":\"575c9ee0-bf39-4b34-9a15-e40ecdb5ca10\",\"createdAt\":\"2026-01-13T19:11:00+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"Unassigned\",\"description\":\"\",\"location\":null,\"isUnassigned\":true}]}",
                            "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": "aut",
                                    "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\":\"575c9ee0-bf39-4b34-9a15-e40ecdb5ca10\",\"createdAt\":\"2026-01-13T19:11:00+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"Unassigned\",\"description\":\"\",\"location\":null,\"isUnassigned\":true}}",
                            "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tempora",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "atque",
                                    "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\":\"575c9ee0-bf39-4b34-9a15-e40ecdb5ca10\",\"createdAt\":\"2026-01-13T19:11:00+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"Unassigned\",\"description\":\"\",\"location\":null,\"isUnassigned\":true}}",
                            "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "fuga",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "numquam",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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-12T18:35:03+00:00\",\"updatedAt\":\"2026-02-12T18:35:03+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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"isUnassigned\":true},{\"uuid\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "e2e00000-f1a0-4e00-b001-000000000001",
                                    "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": "e2e00000-f1a0-4e00-b001-000000000001",
                                    "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": "e2e00000-f1a0-4e00-b001-000000000001",
                                    "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\":\"95311d1b-032e-4881-9b7e-e95d708a1601\",\"email\":\"partner-pending-e2e-seed@tracklab.test\",\"status\":\"pending\",\"roleSlug\":\"user\",\"invitedBy\":{\"uuid\":\"223053eb-6f74-430e-9a40-8e4dc00f7073\",\"name\":\"Alex Admin\"},\"validUntil\":\"2026-03-21T14:58:12+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-03-14T14:58:12+00:00\"},{\"uuid\":\"95311d1b-032e-4881-9b7e-e95d708a1601\",\"email\":\"partner-pending-e2e-seed@tracklab.test\",\"status\":\"pending\",\"roleSlug\":\"user\",\"invitedBy\":{\"uuid\":\"223053eb-6f74-430e-9a40-8e4dc00f7073\",\"name\":\"Alex Admin\"},\"validUntil\":\"2026-03-21T14:58:12+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-03-14T14:58:12+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": "95311d1b-032e-4881-9b7e-e95d708a1601",
                                    "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": "dolor",
                                    "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": "tenetur",
                                    "description": "The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "65251a77-70eb-3709-8a5c-52607e5c00de",
                                    "description": "Filter by farm UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "66ed72f7-550f-3aff-bcc7-bafba8097fa0",
                                    "description": "Filter by farm section UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ea",
                                    "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": "",
                                    "description": "Return raw data without aggregation. Default: false",
                                    "disabled": true
                                },
                                {
                                    "key": "period",
                                    "value": "1-hour",
                                    "description": "Aggregation period slug (overrides auto-selection).",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "id",
                                    "description": "Aggregation method slug from `measurement_aggregation_types` (see `\/api\/v1\/type\/data\/measurement-aggregation`). Default: avg",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "alias",
                                    "description": "numeric Exclude values below threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMax",
                                    "value": "officiis",
                                    "description": "numeric Exclude values above threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "quae",
                                    "description": "Grouping: measurement_type, collector, farm_section, time_bucket, tracker. Default: measurement_type",
                                    "disabled": false
                                },
                                {
                                    "key": "includeMetadata",
                                    "value": "1",
                                    "description": "Include collector info with data. Default: false",
                                    "disabled": false
                                },
                                {
                                    "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": "aliquam",
                                    "description": "Export format: json, csv, xml, excel. Default: json",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "9",
                                    "description": "Page number. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "13",
                                    "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": "laboriosam",
                                    "description": "Filter by specific collector UUIDs",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/measurements?types[0]=dolor&from=2024-01-01T00%3A00%3A00Z&collectorUuids[0]=tenetur&farmUuid=65251a77-70eb-3709-8a5c-52607e5c00de&farmSectionUuid=66ed72f7-550f-3aff-bcc7-bafba8097fa0&collectorTypeSlug=ea&to=2024-01-31T23%3A59%3A59Z&raw=&period=1-hour&aggregation=id&valueMin=alias&valueMax=officiis&groupBy=quae&includeMetadata=1&includeReplacements=&includeCount=1&exportType=aliquam&page=9&perPage=13&types[][0]=temperature&types[][1]=humidity&collectorUuids[][0]=laboriosam",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "dolore",
                                    "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": "expedita",
                                    "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": "incidunt",
                                    "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]=expedita&from=2025-01-01T00%3A00%3A00Z&collectorUuids[0]=incidunt&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": "consequatur",
                                    "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": "labore",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000002",
                                    "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": "fa72a8e6-29a4-436e-a451-180a049e915b",
                                    "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": "dc048081-ba8b-4cd8-96ed-7bafb3964db1",
                                    "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": "dc048081-ba8b-4cd8-96ed-7bafb3964db1",
                                    "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": "dc048081-ba8b-4cd8-96ed-7bafb3964db1",
                                    "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": "13ad9e54-461a-4b67-a9a1-b1bba730b693",
                                    "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": "facilis",
                                    "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": "est",
                                    "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": "f8ae4f34-28f0-4600-9a66-9c26858f429a",
                                    "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": "f8ae4f34-28f0-4600-9a66-9c26858f429a",
                                    "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": "f8ae4f34-28f0-4600-9a66-9c26858f429a",
                                    "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": "amet",
                                    "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": "ut",
                                    "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": "e2e00000-a070-4e00-e002-000000000001",
                                    "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": "e2e00000-a070-4e00-e002-000000000001",
                                    "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": "e2e00000-a070-4e00-e002-000000000001",
                                    "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": "autem",
                                    "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": "ea",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "nemo",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "molestias",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "commodi",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "odit",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "eum",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "harum",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "asperiores",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "veniam",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "consectetur",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "vitae",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "nisi",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "velit",
                                    "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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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\":8}"
                        },
                        "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "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": "{\"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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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": "b1768fd8-6600-536a-82e0-bb57f6dba03d",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "b1768fd8-6600-536a-82e0-bb57f6dba03d",
                                    "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\":\"omnis\"}"
                        },
                        "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": "corporis",
                                    "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": "8c182a1c-a026-346d-a602-0b30ba894e2d",
                                    "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": "e2e00000-a070-4e00-a001-000000000001",
                                    "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": "e2e00000-a070-4e00-a001-000000000001",
                                    "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": "e2e00000-a070-4e00-a001-000000000001",
                                    "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": "e2e00000-a070-4e00-d001-000000000001",
                                    "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": "e2e00000-a070-4e00-d001-000000000001",
                                    "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": "e2e00000-a070-4e00-d001-000000000001",
                                    "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": "e2e00000-a070-4e00-b001-000000000001",
                                    "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": "e2e00000-a070-4e00-c001-000000000001",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "42d40fb7-96f4-5fdc-a05d-a1eeab791074",
                                    "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": "42d40fb7-96f4-5fdc-a05d-a1eeab791074",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "unde",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"isUnassigned\":true},{\"uuid\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "aut",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "et",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "tempora",
                                    "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\":\"08179468-9a8c-468a-9947-0db1c15ae986\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-13T19:10:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "beatae",
                                    "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": "08179468-9a8c-468a-9947-0db1c15ae986",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "officiis",
                                    "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\":\"9d67ab2e-4062-413c-aed7-2a43942fafb8\",\"collectorUuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorType\":\"NCU\",\"farmUuid\":null,\"farmSectionUuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":true,\"activeFrom\":\"2026-03-14T14:52:51+00:00\",\"activeTo\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+00:00\",\"collector\":{\"uuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorTypeSlug\":\"ncu\",\"serial\":\"test-ncu-001\",\"name\":\"Test NCU 001\",\"enabled\":true},\"farmSection\":{\"uuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"name\":\"Test North Array\",\"description\":\"Northern section \\u2013 2 cols x 3 rows\",\"enabled\":true,\"orderColumn\":1,\"location\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"locationJson\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"metadata\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+00:00\",\"isUnassigned\":false}},{\"uuid\":\"9d67ab2e-4062-413c-aed7-2a43942fafb8\",\"collectorUuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorType\":\"NCU\",\"farmUuid\":null,\"farmSectionUuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":true,\"activeFrom\":\"2026-03-14T14:52:51+00:00\",\"activeTo\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+00:00\",\"collector\":{\"uuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorTypeSlug\":\"ncu\",\"serial\":\"test-ncu-001\",\"name\":\"Test NCU 001\",\"enabled\":true},\"farmSection\":{\"uuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"name\":\"Test North Array\",\"description\":\"Northern section \\u2013 2 cols x 3 rows\",\"enabled\":true,\"orderColumn\":1,\"location\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"locationJson\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"metadata\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "eligendi",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "in",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "ipsum",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "fugiat",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "{\"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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "possimus",
                                    "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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "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": "{\"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": "575c9ee0-bf39-4b34-9a15-e40ecdb5ca10",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "dicta",
                                    "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\":\"13f8d4f3-3266-35af-8e33-80125daa68d4\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"9d67ab2e-4062-413c-aed7-2a43942fafb8\",\"collectorUuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorType\":\"NCU\",\"farmUuid\":null,\"farmSectionUuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":true,\"activeFrom\":\"2026-03-14T14:52:51+00:00\",\"activeTo\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+00:00\",\"collector\":{\"uuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorTypeSlug\":\"ncu\",\"serial\":\"test-ncu-001\",\"name\":\"Test NCU 001\",\"enabled\":true},\"farmSection\":{\"uuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"name\":\"Test North Array\",\"description\":\"Northern section \\u2013 2 cols x 3 rows\",\"enabled\":true,\"orderColumn\":1,\"location\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"locationJson\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"metadata\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+00:00\",\"isUnassigned\":false}},{\"uuid\":\"9d67ab2e-4062-413c-aed7-2a43942fafb8\",\"collectorUuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorType\":\"NCU\",\"farmUuid\":null,\"farmSectionUuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":true,\"activeFrom\":\"2026-03-14T14:52:51+00:00\",\"activeTo\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+00:00\",\"collector\":{\"uuid\":\"68aa439e-2bd9-45a3-be2d-551e3ba9615e\",\"collectorTypeSlug\":\"ncu\",\"serial\":\"test-ncu-001\",\"name\":\"Test NCU 001\",\"enabled\":true},\"farmSection\":{\"uuid\":\"e298d853-9fe5-444e-ac70-4c34c82f311d\",\"name\":\"Test North Array\",\"description\":\"Northern section \\u2013 2 cols x 3 rows\",\"enabled\":true,\"orderColumn\":1,\"location\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"locationJson\":{\"lat\":-25.939199271193566,\"lng\":28.14165669965533},\"metadata\":null,\"createdAt\":\"2026-03-14T14:52:51+00:00\",\"updatedAt\":\"2026-03-14T14:52:51+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": "9d67ab2e-4062-413c-aed7-2a43942fafb8",
                                    "description": ""
                                },
                                {
                                    "id": "tracker",
                                    "key": "tracker",
                                    "value": "numquam",
                                    "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": "9d67ab2e-4062-413c-aed7-2a43942fafb8",
                                    "description": ""
                                },
                                {
                                    "id": "tracker",
                                    "key": "tracker",
                                    "value": "in",
                                    "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\":\"et\",\"isPrimary\":false,\"notes\":\"quos\"}]}"
                        },
                        "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\":\"facilis\",\"isPrimary\":false,\"notes\":\"qui\"}]}"
                        },
                        "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": "voluptate",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "deleniti",
                                    "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\":[\"f391d09a-a57d-3045-87a5-3ce3f005606a\"],\"collectorUuids\":[\"1e759d0e-6c88-3fcf-aa84-c57691af11e0\"],\"excludeCollectorUuids\":[\"0e5a28de-2849-3e5d-9e02-96014568f3ac\"]},\"collectorUuids\":[\"ae70652f-6b73-39e6-bab3-d0e50812d9a3\"]}"
                        },
                        "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "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\":[\"e0e1ff19-7cdf-3ec9-b84f-14b82fe6b08f\"],\"collectorUuids\":[\"7cd8ea2f-f57b-3b77-8a29-cffdcc8c17eb\"],\"excludeCollectorUuids\":[\"d0cd6714-d0ef-3534-bcef-025c501d76ea\"]},\"collectorUuids\":[\"73f61c11-1863-3bf3-8ba5-e2aaabcac18d\"]}"
                        },
                        "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "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\":[\"b24ab2d7-036f-3d53-9970-3bc173fc10b6\"],\"collectorUuids\":[\"558cde52-404d-37bb-b944-53364e2b93a4\"],\"excludeCollectorUuids\":[\"53ba67f0-70d6-3aa7-8ca1-44da315b1da2\"]},\"collectorUuids\":[\"9e6155da-7f4d-3e8c-9d99-008043cc25cd\"]}"
                        },
                        "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"add\",\"collectorUuids\":[\"f168a8fc-96cb-3d7c-8e42-30536873deb2\"]}"
                        },
                        "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "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": "e4d781cd-506d-46f1-b52b-855c9eb09c7f",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parameters\":[\"sapiente\"]}"
                        },
                        "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\":true}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "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\":false}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"totam\"}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "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\":[\"15b8d94f-af30-3549-a80b-55705cdf7d8a\"]}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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\":true}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"consectetur\"}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"orderedUuids\":[\"18dab415-30db-31d3-89f2-e5743a9d0177\"]}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "b1768fd8-6600-536a-82e0-bb57f6dba03d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"voluptatem\"}"
                        },
                        "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "b1768fd8-6600-536a-82e0-bb57f6dba03d",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "b1768fd8-6600-536a-82e0-bb57f6dba03d",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "b1768fd8-6600-536a-82e0-bb57f6dba03d",
                                    "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": "df2c5d4a-5fa8-53d0-9e53-7034a98270ae",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "f91063c5-c6b8-562f-9c6b-9747ec12ca96",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "b1768fd8-6600-536a-82e0-bb57f6dba03d",
                                    "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": "e2e00000-f1a0-4e00-b001-000000000001",
                                    "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": "e2e00000-f1a0-4e00-b001-000000000001",
                                    "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": "e2e00000-f1a0-4e00-b001-000000000001",
                                    "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\":\"f\",\"description\":\"Voluptatum delectus consequatur cumque tenetur veniam est repellendus.\"}"
                        },
                        "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\":false}"
                        },
                        "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000001",
                                    "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": "e2e00000-a070-4e00-e001-000000000002",
                                    "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": "fa72a8e6-29a4-436e-a451-180a049e915b",
                                    "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": "dc048081-ba8b-4cd8-96ed-7bafb3964db1",
                                    "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": "dc048081-ba8b-4cd8-96ed-7bafb3964db1",
                                    "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": "dc048081-ba8b-4cd8-96ed-7bafb3964db1",
                                    "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": "13ad9e54-461a-4b67-a9a1-b1bba730b693",
                                    "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": "f8ae4f34-28f0-4600-9a66-9c26858f429a",
                                    "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": "f8ae4f34-28f0-4600-9a66-9c26858f429a",
                                    "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": "f8ae4f34-28f0-4600-9a66-9c26858f429a",
                                    "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": "e2e00000-a070-4e00-e002-000000000001",
                                    "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": "e2e00000-a070-4e00-e002-000000000001",
                                    "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": "e2e00000-a070-4e00-e002-000000000001",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"txzavd\"}"
                        },
                        "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "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": "9bcb0e33-a9ad-43ae-adf7-7435d664fdfa",
                                    "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"9a5e907b-5df0-316f-a3cb-5e9efaaaad96\"}"
                        },
                        "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\":1776261659,\"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": "cum",
                                    "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": "culpa",
                                    "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": "sed",
                                    "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]=culpa&from=2025-01-01T00%3A00%3A00Z&collectorUuids[0]=sed&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 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": "fugit",
                                    "description": "The ID of the verify."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "quia",
                                    "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": "5"
                                },
                                {
                                    "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": "7527b508-8e05-3ff0-957e-992e86b8ab32",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "quas",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "ullam",
                                    "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": "477f1b60-c649-3a0e-be2e-e7e9e0a3f6e6",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "iure",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "beatae",
                                    "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": "c0b3bf93-3d2e-3ed5-a9e6-af2b470dd92b",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "molestiae",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "tempore",
                                    "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": "951229d6-443b-3a7e-a6b3-e36f4cd0940b",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "accusantium",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "fugit",
                                    "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": "aut",
                                    "description": ""
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "e2e00000-a070-4e00-d001-000000000001",
                                    "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": "omnis",
                                    "description": ""
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "a8f2776b-148b-4738-a80e-cb8b1f57156d",
                                    "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": "a",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "fcfotmgsvxnmppumxxlya",
                                    "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": "yucnpy",
                                    "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-action-failure-mode?page=1&perPage=20&sort=a&sortBy=fcfotmgsvxnmppumxxlya&sortOrder=asc&filter[]=&filter.search=yucnpy&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-action-failure-mode?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "ovfs",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "esubjh",
                                    "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": "ftlnhqcckgxaevvvl",
                                    "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-action-target?page=1&perPage=20&sort=ovfs&sortBy=esubjh&sortOrder=asc&filter[]=&filter.search=ftlnhqcckgxaevvvl&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-action-target?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "phz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "n",
                                    "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": "hburakzzxjavbnkxwwsq",
                                    "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-action?page=1&perPage=20&sort=phz&sortBy=n&sortOrder=asc&filter[]=&filter.search=hburakzzxjavbnkxwwsq&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-action?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "xgeaejwdfd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "b",
                                    "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": "crbizcxdjlklkezeh",
                                    "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-group-operator?page=1&perPage=20&sort=xgeaejwdfd&sortBy=b&sortOrder=desc&filter[]=&filter.search=crbizcxdjlklkezeh&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-condition-group-operator?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "grqnaipypmvta",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mfhsnkhojfevm",
                                    "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": "rskybjeir",
                                    "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-operator?page=1&perPage=20&sort=grqnaipypmvta&sortBy=mfhsnkhojfevm&sortOrder=asc&filter[]=&filter.search=rskybjeir&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-condition-operator?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "cfeanxbtzttjrtqdka",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "zvtgmlaibphjqmehez",
                                    "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": "oauitizysa",
                                    "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-source?page=1&perPage=20&sort=cfeanxbtzttjrtqdka&sortBy=zvtgmlaibphjqmehez&sortOrder=desc&filter[]=&filter.search=oauitizysa&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-event-source?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "ppe",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "vmymxctbuybytxshaklg",
                                    "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": "ljfqjsvg",
                                    "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-event-status?page=1&perPage=20&sort=ppe&sortBy=vmymxctbuybytxshaklg&sortOrder=desc&filter[]=&filter.search=ljfqjsvg&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-event-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "svvuqdwpf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "eeqv",
                                    "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": "fpbtmvqplhihupoivxnwc",
                                    "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-execution-status?page=1&perPage=20&sort=svvuqdwpf&sortBy=eeqv&sortOrder=desc&filter[]=&filter.search=fpbtmvqplhihupoivxnwc&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-execution-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "cdokg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nrmgbaagdbaacwmo",
                                    "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": "oqqndcvjveatuxo",
                                    "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-match-status?page=1&perPage=20&sort=cdokg&sortBy=nrmgbaagdbaacwmo&sortOrder=asc&filter[]=&filter.search=oqqndcvjveatuxo&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-match-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "vxhwxohyzdcomvfo",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ktsekkxkkqcdzp",
                                    "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": "vxxtdwkwqiknvjbwtkwevmbq",
                                    "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-rule-status?page=1&perPage=20&sort=vxhwxohyzdcomvfo&sortBy=ktsekkxkkqcdzp&sortOrder=asc&filter[]=&filter.search=vxxtdwkwqiknvjbwtkwevmbq&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-rule-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "fgtfscabwbaev",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "yubhfkmgrestdetacevjklylk",
                                    "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": "p",
                                    "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-trigger-subject?page=1&perPage=20&sort=fgtfscabwbaev&sortBy=yubhfkmgrestdetacevjklylk&sortOrder=desc&filter[]=&filter.search=p&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\":[{\"slug\":\"parameter-value\",\"name\":\"Parameter Value\",\"description\":\"\"}],\"links\":{\"first\":\"https:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject\",\"per_page\":20,\"to\":1,\"total\":1}}",
                            "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": "wfemqkvqyad",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qbp",
                                    "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": "e",
                                    "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-weather-metric?page=1&perPage=20&sort=wfemqkvqyad&sortBy=qbp&sortOrder=asc&filter[]=&filter.search=e&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\":[{\"slug\":\"wind-speed\",\"name\":\"Wind Speed\",\"description\":\"\"},{\"slug\":\"temperature\",\"name\":\"Temperature\",\"description\":\"\"}],\"links\":{\"first\":\"https:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric\",\"per_page\":20,\"to\":2,\"total\":2}}",
                            "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": "mtkdmbhtkntyuclikqjdq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nawekx",
                                    "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": "xxkyreuiqnax",
                                    "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-webhook-auth?page=1&perPage=20&sort=mtkdmbhtkntyuclikqjdq&sortBy=nawekx&sortOrder=desc&filter[]=&filter.search=xxkyreuiqnax&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-webhook-auth?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "kanwhjrbpsswlgvlzzofsimof",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "udqiiqubv",
                                    "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": "noa",
                                    "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\/collector?page=1&perPage=20&sort=kanwhjrbpsswlgvlzzofsimof&sortBy=udqiiqubv&sortOrder=asc&filter[]=&filter.search=noa&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/collector?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/collector?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/qa.tracklabsolar.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": "vbpbultp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "cqxtlnamlnyuhlxiabdigtcf",
                                    "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": "lep",
                                    "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\/collector-status?page=1&perPage=20&sort=vbpbultp&sortBy=cqxtlnamlnyuhlxiabdigtcf&sortOrder=asc&filter[]=&filter.search=lep&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/collector-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "zzipmwzuyclpdrh",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "lhgsbqpuotwgotqwjnokcdx",
                                    "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": "pvnfqexpvbuujcmdym",
                                    "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-contact?page=1&perPage=20&sort=zzipmwzuyclpdrh&sortBy=lhgsbqpuotwgotqwjnokcdx&sortOrder=desc&filter[]=&filter.search=pvnfqexpvbuujcmdym&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/company-contact?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "okxbysylun",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "watwhuheioncmhe",
                                    "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": "sejss",
                                    "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-invite-status?page=1&perPage=20&sort=okxbysylun&sortBy=watwhuheioncmhe&sortOrder=asc&filter[]=&filter.search=sejss&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/company-link-invite-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "gbyladurk",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ewzthobkudsjckupbsrneil",
                                    "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": "ag",
                                    "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=gbyladurk&sortBy=ewzthobkudsjckupbsrneil&sortOrder=desc&filter[]=&filter.search=ag&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/company-link-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "pisygasmymelkabk",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "vf",
                                    "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": "ozssbbegmyftmkwpurwkncfnc",
                                    "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-deletion-audit-status?page=1&perPage=20&sort=pisygasmymelkabk&sortBy=vf&sortOrder=desc&filter[]=&filter.search=ozssbbegmyftmkwpurwkncfnc&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/data-deletion-audit-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "zmzhnfriohmdpujeops",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "elugbqxdtn",
                                    "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": "inyljq",
                                    "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\/data-retention-data?page=1&perPage=20&sort=zmzhnfriohmdpujeops&sortBy=elugbqxdtn&sortOrder=desc&filter[]=&filter.search=inyljq&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/data-retention-data?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "dzsldfxwd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "yyqwmeyobhdd",
                                    "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": "pswlxbtjkbwduhajdq",
                                    "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\/device-message-processing-status?page=1&perPage=20&sort=dzsldfxwd&sortBy=yyqwmeyobhdd&sortOrder=desc&filter[]=&filter.search=pswlxbtjkbwduhajdq&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/device-message-processing-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "bvbeeq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mbsmvalhxlibpstujaezcrh",
                                    "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": "rzrzjtkdfhabzkyrmq",
                                    "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=bvbeeq&sortBy=mbsmvalhxlibpstujaezcrh&sortOrder=asc&filter[]=&filter.search=rzrzjtkdfhabzkyrmq&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/failure?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/failure?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/qa.tracklabsolar.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": "mjnytojfrsokzjzuoqupsffjr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "jpagsbhjozffrhwyaeu",
                                    "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": "kz",
                                    "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=mjnytojfrsokzjzuoqupsffjr&sortBy=jpagsbhjozffrhwyaeu&sortOrder=desc&filter[]=&filter.search=kz&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/invitation-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "cclbxpz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "jyempwxxrdpajvfkcutwptbo",
                                    "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": "axbot",
                                    "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\/ip?page=1&perPage=20&sort=cclbxpz&sortBy=jyempwxxrdpajvfkcutwptbo&sortOrder=desc&filter[]=&filter.search=axbot&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/ip?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/ip?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/qa.tracklabsolar.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": "vwysqp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ourxxyudxmqcu",
                                    "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": "vdlfqadbzvfniuvpzjcvleqxy",
                                    "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=vwysqp&sortBy=ourxxyudxmqcu&sortOrder=asc&filter[]=&filter.search=vdlfqadbzvfniuvpzjcvleqxy&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mime-type-list?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "ijrqkpfyemupkmujqlfbvna",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "yzldktiqjexxahnjqkvnei",
                                    "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": "dgynhms",
                                    "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=ijrqkpfyemupkmujqlfbvna&sortBy=yzldktiqjexxahnjqkvnei&sortOrder=asc&filter[]=&filter.search=dgynhms&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-app-version?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "bsdqhqdqniphwfy",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "cksfvcgat",
                                    "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": "fhnqpinyb",
                                    "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-action?page=1&perPage=20&sort=bsdqhqdqniphwfy&sortBy=cksfvcgat&sortOrder=desc&filter[]=&filter.search=fhnqpinyb&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-action?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "uirzvccrnclnpxgldlcxqp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "vmp",
                                    "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": "v",
                                    "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-connection?page=1&perPage=20&sort=uirzvccrnclnpxgldlcxqp&sortBy=vmp&sortOrder=asc&filter[]=&filter.search=v&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-connection?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "qga",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "aku",
                                    "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": "tse",
                                    "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-event?page=1&perPage=20&sort=qga&sortBy=aku&sortOrder=asc&filter[]=&filter.search=tse&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-event?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "nnnpfce",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "dbaxxxpspbfmdolqkd",
                                    "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": "cijjjhfbdzhndcoezf",
                                    "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-audit-result-status?page=1&perPage=20&sort=nnnpfce&sortBy=dbaxxxpspbfmdolqkd&sortOrder=desc&filter[]=&filter.search=cijjjhfbdzhndcoezf&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-result-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "uphonzsf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ljjuzd",
                                    "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": "ehphqxkcda",
                                    "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-build-number?page=1&perPage=20&sort=uphonzsf&sortBy=ljjuzd&sortOrder=desc&filter[]=&filter.search=ehphqxkcda&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-build-number?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "mvdxkehkgcogiexxcajn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "akqepzskwgosdqha",
                                    "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": "ukcidupsyumdi",
                                    "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-device-model?page=1&perPage=20&sort=mvdxkehkgcogiexxcajn&sortBy=akqepzskwgosdqha&sortOrder=desc&filter[]=&filter.search=ukcidupsyumdi&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-device-model?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "vmuxdujozhiejtffsmtily",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "edwiipnznpnnpukqaolpzbwr",
                                    "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": "qlbmqxwaod",
                                    "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-operator-label?page=1&perPage=20&sort=vmuxdujozhiejtffsmtily&sortBy=edwiipnznpnnpukqaolpzbwr&sortOrder=asc&filter[]=&filter.search=qlbmqxwaod&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-operator-label?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "h",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ximfhxwiswnpmoiqmvb",
                                    "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": "riaqilbmzbsavrypdjljuypwe",
                                    "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=h&sortBy=ximfhxwiswnpmoiqmvb&sortOrder=desc&filter[]=&filter.search=riaqilbmzbsavrypdjljuypwe&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-os-version?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "zicdzprvityktxcvneavpjjwn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mpfltnktbml",
                                    "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": "roxgmkndaukwakhqlfogsp",
                                    "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-platform?page=1&perPage=20&sort=zicdzprvityktxcvneavpjjwn&sortBy=mpfltnktbml&sortOrder=desc&filter[]=&filter.search=roxgmkndaukwakhqlfogsp&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-platform?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "lq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "raesfmgxjbe",
                                    "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": "emcbfjlfodpcc",
                                    "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\/note?page=1&perPage=20&sort=lq&sortBy=raesfmgxjbe&sortOrder=desc&filter[]=&filter.search=emcbfjlfodpcc&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/note?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/note?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/qa.tracklabsolar.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": "uijidllwsluvnayegf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "pczfnbbgzpvurglvlheptqonq",
                                    "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": "ekb",
                                    "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=uijidllwsluvnayegf&sortBy=pczfnbbgzpvurglvlheptqonq&sortOrder=desc&filter[]=&filter.search=ekb&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/notification-channel?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "ugvh",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "g",
                                    "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": "gkbhgeqwrztesy",
                                    "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\/notification-delivery-status?page=1&perPage=20&sort=ugvh&sortBy=g&sortOrder=asc&filter[]=&filter.search=gkbhgeqwrztesy&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/notification-delivery-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "ihagnx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "fhkgsttv",
                                    "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": "cguyobcaisovkln",
                                    "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=ihagnx&sortBy=fhkgsttv&sortOrder=desc&filter[]=&filter.search=cguyobcaisovkln&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/notification-template-format?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "fqgkdjtnhmuczom",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "otejo",
                                    "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": "pshtmhgp",
                                    "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\/permission?page=1&perPage=20&sort=fqgkdjtnhmuczom&sortBy=otejo&sortOrder=asc&filter[]=&filter.search=pshtmhgp&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": 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": "fdyjxmijegyiagiolbqb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "jxwzlsrqefrulnbkgzmwkwsks",
                                    "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": "vyprcofmalofootvf",
                                    "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\/rma-status?page=1&perPage=20&sort=fdyjxmijegyiagiolbqb&sortBy=jxwzlsrqefrulnbkgzmwkwsks&sortOrder=desc&filter[]=&filter.search=vyprcofmalofootvf&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/rma-status?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "pjovazovxba",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "pccgtgixsnfkpfnm",
                                    "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": "wyqqnhomgn",
                                    "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=pjovazovxba&sortBy=pccgtgixsnfkpfnm&sortOrder=desc&filter[]=&filter.search=wyqqnhomgn&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": "iqqqbgq",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ukonolkvvgmjtsezcrpo",
                                    "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": "faxpcjya",
                                    "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\/user-address?page=1&perPage=20&sort=iqqqbgq&sortBy=ukonolkvvgmjtsezcrpo&sortOrder=asc&filter[]=&filter.search=faxpcjya&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/user-address?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.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": "bizsjvqrjbfup",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "vu",
                                    "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": "chlbh",
                                    "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\/warranty?page=1&perPage=20&sort=bizsjvqrjbfup&sortBy=vu&sortOrder=asc&filter[]=&filter.search=chlbh&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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/warranty?page=1\",\"last\":\"https:\\\/\\\/qa.tracklabsolar.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:\\\/\\\/qa.tracklabsolar.com\\\/api\\\/v1\\\/type\\\/warranty?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/qa.tracklabsolar.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\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "quod",
                                    "description": "The ID of the verify email."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "quia",
                                    "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:\/\/qa.tracklabsolar.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": "4"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6IkR4S3UzdWxoMHJ5QXF4aTdjaFpFU3c9PSIsInZhbHVlIjoieTFjb3JyeSs3WTFUVkREODQzYmlTeXZScEVWbUExbGNTUDZKVXBNdXQrNVFvdVFDMEs1eGk5KzI1YWJ0OXZWRXRMZERhZUdKWndiQXM5Mm5YSTVsMVJmOGV4aW1VM1pMYXdpSDFYd21PQ3JFQkthNGRIQUZndFNQYVZTTkFVZ3giLCJtYWMiOiIwZDE5NDU3OWUyOTMwZjg0MzUyNDE5NmNmZWI1YzVkOGM4ZTk0OGU5NTY3YmZhM2EzNjUwNzg3NTZiNmZmNTAyIiwidGFnIjoiIn0%3D; expires=Wed, 15 Apr 2026 16:01:00 GMT; Max-Age=7200; path=\/; domain=qa.tracklabsolar.com; secure; samesite=lax; tracklab_session=eyJpdiI6ImN4azQ1a2gzWVRhNE1sUHcwcFMydnc9PSIsInZhbHVlIjoicURIV2k0VWJLb3dTcWVsSEtjN0xNUGZKMHRrK0tmSlFmbXRmZFQ0Q3E2alJGVDFtOWNjZ2lzeE5JU1A5NTVzNk5qVU0yYlMwbmRrMVphUU8zR2ZHSnNFVDJGWGhqU2FmZGd5YzQ2RHdVWlYydVdobFZSS3o5RGcxTWJqOTQwNlkiLCJtYWMiOiJiMTExODliOWRlYTYzNjM1ZGViNjc5Y2M5YzU4MjMwZDgyNzU2NTUzYmVmNDFmYWJlMGUwY2YyOTI0ZTkzZDFlIiwidGFnIjoiIn0%3D; expires=Wed, 15 Apr 2026 16:01:00 GMT; Max-Age=7200; path=\/; domain=qa.tracklabsolar.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:\/\/qa.tracklabsolar.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link'\" \/>\n\n        <title>Redirecting to https:\/\/qa.tracklabsolar.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link<\/title>\n    <\/head>\n    <body>\n        Redirecting to <a href=\"https:\/\/qa.tracklabsolar.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link\">https:\/\/qa.tracklabsolar.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": "95311d1b-032e-4881-9b7e-e95d708a1601",
                                    "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": "95311d1b-032e-4881-9b7e-e95d708a1601",
                                    "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\":\"95311d1b-032e-4881-9b7e-e95d708a1601\",\"email\":\"partner-pending-e2e-seed@tracklab.test\",\"status\":\"pending\",\"roleSlug\":\"user\",\"invitedBy\":{\"uuid\":\"223053eb-6f74-430e-9a40-8e4dc00f7073\",\"name\":\"Alex Admin\"},\"validUntil\":\"2026-03-21T14:58:12+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-03-14T14:58:12+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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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": "bcd41fc2-c44d-5b8d-91af-3d554e1ab309",
                                    "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": "5b3e157e-f459-3ebb-b5a3-e2caf808445a",
                                    "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": "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null},{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "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}\/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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"occaecati\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab\",\"createdAt\":\"2025-11-14T19:08:59+00:00\",\"updatedAt\":\"2026-01-22T23:22:07+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"tim@haak.co\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"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": "e363dc2c-c2ae-46dd-9e50-7fb2bdc19dab",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "earum",
                                    "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": "qui",
                                    "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": "5411e7cf-f8fc-5fda-bca5-6c4178ac1cf3",
                                    "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": "296e3157-ca91-53ea-8037-c715ff67e56c",
                                    "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": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}