{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/tracklabsolar.com"
        }
    ],
    "info": {
        "name": "TrackLab",
        "_postman_id": "709aba5a-21d5-4fc0-b31a-776e94a6742f",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Admin Management",
            "description": "\nAPIs for super admin operations",
            "item": [
                {
                    "name": "Add New User",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/user"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companyName\":\"New Company Ltd\",\"email\":\"user@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"password\":\"SecurePass123!\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\"}"
                        },
                        "description": "Create a new user and company (super admin only)."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"user@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"phoneNumbers\": [{ \"countryIsoCode\": \"US\", \"phoneNumber\": \"+1234567890\", \"isChecked\": true, \"isValid\": true }],\n    \"createdAt\": \"2024-01-20T12:00:00Z\",\n    \"updatedAt\": \"2024-01-20T12:00:00Z\",\n    \"defaultCompanySlug\": \"new-company-ltd\",\n    \"emailVerifiedAt\": null,\n    \"defaultCountryIsoCode\": \"US\",\n    \"defaultCountryEmoji\": \"\ud83c\uddfa\ud83c\uddf8\",\n    \"imgUrl\": \"https:\/\/www.gravatar.com\/avatar\/...\",\n    \"imgThumbUrl\": \"https:\/\/www.gravatar.com\/avatar\/...\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"email\": [\"The email has already been taken.\"],\n    \"companyName\": [\"The company name has already been taken.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication",
            "description": "\nAPIs for managing authentication sessions",
            "item": [
                {
                    "name": "Login user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"john@example.com\",\"password\":\"secret123!@#\",\"remember_me\":true}"
                        },
                        "description": "Authenticate a user and create a new session. This endpoint validates the user's\ncredentials and returns the authenticated user's details along with a session cookie.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"john@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"phoneNumbers\": [{ \"countryIsoCode\": \"GB\", \"phoneNumber\": \"+44...\", \"isChecked\": true, \"isValid\": true }],\n    \"createdAt\": \"2024-01-20T12:00:00Z\",\n    \"updatedAt\": \"2024-01-20T12:00:00Z\",\n    \"imgUrl\": \"https:\/\/example.com\/profiles\/john.jpg\",\n    \"imgThumbUrl\": \"https:\/\/example.com\/profiles\/john_thumb.jpg\",\n    \"defaultCompanySlug\": \"example-company\",\n    \"emailVerifiedAt\": \"2024-01-20T11:00:00Z\",\n    \"defaultCountryIsoCode\": \"GB\",\n    \"defaultCountryEmoji\": \"\ud83c\uddec\ud83c\udde7\"\n  }\n}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\": \"The provided credentials are incorrect.\",\"errors\": {\"email\": [\"These credentials do not match our records.\"]}}",
                            "name": "Invalid Credentials"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The provided credentials are incorrect.\",\n  \"errors\": {\n    \"email\": [\"These credentials do not match our records.\"]\n  }\n}",
                            "name": "Invalid Credentials"
                        },
                        {
                            "header": [],
                            "code": 429,
                            "body": "{\"message\": \"Too many login attempts. Please try again in 60 seconds.\",\"errors\": {\"email\": [\"Too many login attempts.\"]}}",
                            "name": "Too Many Attempts"
                        },
                        {
                            "header": [],
                            "code": 429,
                            "body": "{\n  \"message\": \"Too many login attempts. Please try again in 60 seconds.\",\n  \"errors\": {\n    \"email\": [\"Too many login attempts.\"]\n  }",
                            "name": "Too Many Attempts"
                        }
                    ]
                },
                {
                    "name": "Logout user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/logout"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Invalidate the current user's session."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"msg\":\"Logged out\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": "Unauthenticated"
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication > Token Management",
            "description": "",
            "item": [
                {
                    "name": "DELETE api\/v1\/logout\/everywhere",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logout\/everywhere",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/logout\/everywhere"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"Logged out everywhere - all tokens and sessions invalidated\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sanctum\/token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"SecurePass123!\",\"deviceName\":\"TrackLab Web\",\"abilities\":[\"deliveries:read\"],\"expiresIn\":1440,\"refreshExpiresIn\":10080}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"accessToken\":\"1|sanctum_abc\",\"refreshToken\":\"2|sanctum_xyz\",\"tokenType\":\"Bearer\",\"expiresIn\":900}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sanctum\/token\/refresh",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/refresh"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"refreshToken\":\"2|laravel_sanctum_abc123\",\"expiresIn\":1440,\"refreshExpiresIn\":10080}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"accessToken\":\"3|sanctum_new\",\"refreshToken\":\"4|sanctum_new_refresh\",\"tokenType\":\"Bearer\",\"expiresIn\":900}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/current",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/current"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"Current token revoked successfully\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/refresh",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/refresh"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"refreshToken\":\"2|laravel_sanctum_abc123\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"Refresh token revoked successfully\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/all",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/all",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/all"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"message\":\"All other tokens revoked successfully\"}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sanctum\/tokens",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/tokens"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"tokens\":[{\"tokenUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"name\":\"TrackLab Web\",\"abilities\":[\"*\"],\"lastUsedAt\":\"2024-01-20T12:00:00Z\",\"createdAt\":\"2024-01-19T12:00:00Z\",\"expiresAt\":\"2024-02-18T12:00:00Z\",\"isRefreshToken\":false}]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sanctum\/token\/{tokenUuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sanctum\/token\/:tokenUuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sanctum\/token\/:tokenUuid",
                            "variable": [
                                {
                                    "id": "tokenUuid",
                                    "key": "tokenUuid",
                                    "value": "4f2cd786-647a-367a-bfba-e62a1add0c23",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tokenUuid\":\"393beac0-b9d3-386a-80b4-ca3802a23352\"}"
                        },
                        "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": "cupiditate",
                                    "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": "quia",
                                    "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": "voluptatem",
                                    "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": "tracklab",
                                    "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": "omnis",
                                    "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": "facere",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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\":\"perferendis\"}"
                        },
                        "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": "minus",
                                    "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": "tempora",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null},{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "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": "{\"email\":\"admin@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"viewer\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\":\"The email has already been taken.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/user\/role-uuids",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/role-uuids",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/role-uuids",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "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": [],
                            "code": 200,
                            "body": "{\"data\":[\"550e8400-e29b-41d4-a716-446655440000\",\"7d793789-c8b3-4687-9287-c1e4c9c4b87b\"]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/user\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"9c77d787-f570-34e6-afdd-0f91f3ac1f47\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/c\/{company_slug}\/user\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"f384084e-9efe-308f-a278-d8f47250fade\",\"email\":\"john.doe@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/user\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"923dd06e-8b1f-36fb-a773-ec233f7e899c\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/c\/{company_slug}\/user\/{user_uuid}\/disable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/disable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/disable",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"771052c8-17f6-34a9-a237-9b71a76dd7de\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/c\/{company_slug}\/user\/{user_uuid}\/enable",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/enable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/enable",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"4dbb0198-8128-36cc-98bf-b24295c4f27c\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update User Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Upload or replace a user's profile picture."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get User Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/:user_uuid\/profile\/picture\/:format",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "thumbnail",
                                    "description": "The image format (original, thumbnail)."
                                },
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The user UUID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a user's profile picture."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk Upload Users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/user\/bulk",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/user\/bulk",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Upload a CSV file to create multiple users at once.\nCSV must have headers: email,firstName,lastName,roleSlug,phoneNumber"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"total\": 10,\n    \"created\": 8,\n    \"skipped\": 1,\n    \"errors\": 1,\n    \"results\": [\n      { \"email\": \"john@example.com\", \"status\": \"created\" },\n      { \"email\": \"existing@example.com\", \"status\": \"skipped\", \"reason\": \"User already exists\" }\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Document Types",
            "description": "",
            "item": [
                {
                    "name": "Get Document Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/document",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/document"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all available document types."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"unknown\",\"documentSectionTypeSlug\":null,\"documentFormatTypeSlug\":null},{\"slug\":\"unknown\",\"name\":\"unknown\",\"documentSectionTypeSlug\":null,\"documentFormatTypeSlug\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Document Format Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/document\/format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/document\/format"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all available document format types."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"},{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Document Section Types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/document\/section",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/document\/section"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all available document section types."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"},{\"slug\":\"unknown\",\"name\":\"unknown\",\"description\":\"\"}]}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Documents",
            "description": "",
            "item": [
                {
                    "name": "Get Public Document",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/open-documents\/:openDocument_uuid\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/open-documents\/:openDocument_uuid\/:format",
                            "variable": [
                                {
                                    "id": "openDocument_uuid",
                                    "key": "openDocument_uuid",
                                    "value": "467d93b9-3f94-3e29-8bd0-143d6626a070",
                                    "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=eyJpdiI6IldaRFBCTkFPVjNmOEhubmlFMVJ3Y1E9PSIsInZhbHVlIjoiYmRONXMrVWVwS2FxMEtuakVZbkNlemdJMTNRTUJlamNjWG92b3BtSGhBbEMrT1V2aXptV1hVQWprVTZoRk1PYWNaTC9MR2EwbEdqU1pLYllBRHM2KzRlZ3c0dDlPcGJvZ0haT2tJWTFvakhDbG15eXV1NlNQaE1NL0I0SXAwMnkiLCJtYWMiOiI3ZGFlM2IzZGM3Mjg1YmVkNDUxYjNlZThiZWEwM2VlNWEzZGM0MTY0ZjZjZTY2ZWM3NWM2NTZiMGM0YTlmMjRjIiwidGFnIjoiIn0%3D; expires=Sat, 15 Aug 2026 17:50:43 GMT; Max-Age=7200; path=\/; domain=tracklabsolar.com; secure; samesite=lax; tracklab_session=eyJpdiI6IkIvQ1FGd2t2MGNZMkpNQlQxYnVXNUE9PSIsInZhbHVlIjoiYXhiOU1SSGJudnNPbmE1citqY1JzTlJBR2dVU0NiSzk3S0pIZ2ZZZXF3c3lmSXRNSmdUZDBLczNhakw4KzNteEZSa0xyNXNKVUVOMDBOTXp4dXJnK0ltZE8yM3lpRXFFOWRxcVBYZVpoekUrNzJqbEREb0FpdWhpaTBRdHJNbTYiLCJtYWMiOiJjZDRkNDQ0NDg0NzBhYWM2MWIxZWU4N2Y0N2FlODEwN2ExNzI1NDI5MTQ1YWU1MzA4NTZmYTFmNTdiNjExMTA2IiwidGFnIjoiIn0%3D; expires=Sat, 15 Aug 2026 17:50:43 GMT; Max-Age=7200; path=\/; domain=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\/rule-capabilities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation\/rule-capabilities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation\/rule-capabilities",
                            "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\/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": "deserunt",
                                    "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": "iure",
                                    "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,\"definition\":{\"trigger\":{\"sourceType\":\"weather-observed\",\"subjectType\":\"weather-metric\",\"target\":{\"kind\":\"weather-metric\",\"slug\":\"wind-speed\"}},\"condition\":{\"groupOperator\":\"and\",\"operator\":\"gt\",\"valueNumericMin\":18.5,\"valueNumericMax\":null},\"action\":{\"type\":\"send-notification\",\"failureMode\":\"stop-on-failure\",\"notificationPolicyUuid\":\"550e8400-e29b-41d4-a716-446655440103\"},\"schemaVersion\":17}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}\/publish-definition",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid\/publish-definition",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid\/publish-definition",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "5fe1386c-8d01-3319-ba3c-9ed4c1a8111d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"changeReason\":\"kde\",\"dryRunConfirmed\":false,\"dryRunToken\":\"xgewxzzdqfeejrlapmb\",\"publishConfirmed\":true}"
                        },
                        "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": "eaf8f620-3629-3d68-a751-2186dc164508",
                                    "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": "ac9d84ce-72ef-3a41-8aa5-c8c5fa1a58ca",
                                    "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,\"definition\":{\"trigger\":{\"sourceType\":\"measurement\",\"subjectType\":\"measurement-value\",\"target\":{\"kind\":\"collector-measurement\",\"slug\":\"ncu-cpu-temperature\"}},\"condition\":{\"groupOperator\":\"and\",\"operator\":\"gt\",\"valueNumericMin\":70,\"valueNumericMax\":null},\"action\":{\"type\":\"send-notification\",\"failureMode\":\"stop-on-failure\",\"notificationPolicyUuid\":\"550e8400-e29b-41d4-a716-446655440103\"},\"schemaVersion\":17}}"
                        },
                        "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": "46298451-1e3f-3041-843a-337869bc74bd",
                                    "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": "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-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": "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": "{\"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": "91e3723b-7114-3cb4-b57f-884055eb2b4a",
                                    "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": "7f0b56de-8bd9-3d1d-beba-f88c8b16c773",
                                    "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": "f4225db7-c7ef-3d98-9869-4484a6e69b93",
                                    "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": "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 api\/v1\/c\/{company_slug}\/automation-events\/{automationEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationEvent_uuid",
                                    "key": "automationEvent_uuid",
                                    "value": "02ccea26-141c-4f51-9aea-470b69cea45c",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/automation-events\/manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-events\/manual",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-events\/manual",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "dolorem",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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": "sunt",
                                    "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": "11e48839-3c3e-3f30-80bd-5f8e98bcd354",
                                    "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": "modi",
                                    "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": "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": "{\"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": "aliquam",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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": "molestiae",
                                    "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": "ab",
                                    "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": "sit",
                                    "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": "f618e3d6-e7c4-3c8b-8931-a8f5325cec4e",
                                    "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": "171e903c-7841-3023-881f-8bd752dce381",
                                    "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": "fd7fb261-941b-3717-8a3d-4dc4613e8563",
                                    "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": "1b65ff88-097e-3b7e-980a-9e77fb9bb19d",
                                    "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": "f45a68ac-5ab6-32f3-afa6-cc0c507e0009",
                                    "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": "ca90c704-60e9-3fe5-a64f-7a01c7e7f72f",
                                    "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": "9edd09ee-cf02-39e9-b014-9b0c2a5b456c",
                                    "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": "69e44b72-1939-3d48-b37f-2d1156c180c8",
                                    "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": "32c96cf6-56b1-3f6c-a959-59e00025021c",
                                    "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": "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\":\"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": "deleniti",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "laborum",
                                    "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": "deserunt",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "cumque",
                                    "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": "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": "{\"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": "est",
                                    "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": "est",
                                    "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": "accusamus",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns measurement availability aggregated by measurement type across all collectors."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"<measurement-type-slug>\": {\n      \"collectorMeasurementTypeSlug\": \"ncu-cpu-temperature\",\n      \"minTimestamp\": \"2025-11-12T22:40:36Z\",\n      \"maxTimestamp\": \"2025-12-14T22:13:05Z\"\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get All Collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "ncu",
                                    "description": "Filter by collector type (ncu or tcu).",
                                    "disabled": false
                                },
                                {
                                    "key": "parent_uuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter TCUs by parent NCU UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "format",
                                    "value": "paginated",
                                    "description": "Response format (paginated or keyed). Default: paginated.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector?page=1&perPage=15&type=ncu&parent_uuid=550e8400-e29b-41d4-a716-446655440000&format=paginated",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null},{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}]}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"name\": \"Main Collector\",\n      \"description\": \"Primary collector\",\n      \"type\": \"NCU\",\n      \"typeId\": 1,\n      \"parentUuid\": null,\n      \"childrenUuids\": [\"550e8400-e29b-41d4-a716-446655440001\"],\n      \"createdAt\": \"2024-01-20T12:00:00Z\",\n      \"updatedAt\": \"2024-01-20T12:00:00Z\",\n      \"enabled\": true,\n      \"companySlug\": \"tracklab\",\n      \"farmUuid\": \"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\n      \"serial\": \"NCU-001\",\n      \"location\": {\n        \"lat\": 51.509865,\n        \"lng\": -0.118092\n      }\n    }\n  ],\n  \"links\": {\n    \"first\": \"http:\/\/example.com\/api\/company\/tracklab\/collector?page=1\",\n    \"last\": \"http:\/\/example.com\/api\/company\/tracklab\/collector?page=5\",\n    \"prev\": null,\n    \"next\": \"http:\/\/example.com\/api\/company\/tracklab\/collector?page=2\"\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 5,\n    \"path\": \"http:\/\/example.com\/api\/company\/tracklab\/collector\",\n    \"perPage\": 15,\n    \"to\": 15,\n    \"total\": 75\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Collector",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "reiciendis",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "et",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Updated Field Collector\",\"description\":\"Updated collector description\",\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": "Update an existing collector's details."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Collector Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "officiis",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "consequuntur",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Child Collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/children",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "format",
                                    "value": "paginated",
                                    "description": "Response format (paginated or keyed). Default: paginated.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/children?page=1&perPage=15&format=paginated",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "ratione",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "sint",
                                    "description": "The UUID of the parent NCU collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get all TCUs that belong to a specific NCU"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null},{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}]}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"name\": \"TCU 1\",\n      \"description\": \"Tracking Control Unit 1\",\n      \"type\": \"TCU\",\n      \"typeId\": 2,\n      \"parentUuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"childrenUuids\": [],\n      \"createdAt\": \"2024-01-20T12:00:00Z\",\n      \"updatedAt\": \"2024-01-20T12:00:00Z\",\n      \"enabled\": true,\n      \"companySlug\": \"tracklab\",\n      \"farmUuid\": \"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\n      \"serial\": \"TCU-001\",\n      \"location\": {\n        \"lat\": 51.509865,\n        \"lng\": -0.118092\n      }\n    }\n  ],\n  \"links\": {...},\n  \"meta\": {...}\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"error\": \"Only NCU collectors can have children\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Collector Parent",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parent",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/parent",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "soluta",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "amet",
                                    "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": "assumenda",
                                    "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": "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": "aspernatur",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "maiores",
                                    "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": "hic",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "a",
                                    "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": "autem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "natus",
                                    "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": "voluptatibus",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "aliquid",
                                    "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": "sunt",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "est",
                                    "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": "sunt",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "excepturi",
                                    "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": "sed",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "molestiae",
                                    "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": "aliquid",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "incidunt",
                                    "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": "veritatis",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "repellat",
                                    "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": "laudantium",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "est",
                                    "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": "aperiam",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "eius",
                                    "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": "esse",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "minus",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the history of firmware assignments for a collector."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Rename a tracker and lock it from automatic collector-name propagation.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/tracker\/:tracker_uuid\/name",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/tracker\/:tracker_uuid\/name",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "tracker_uuid",
                                    "key": "tracker_uuid",
                                    "value": "a205ee53-a5ce-4ecf-8103-d1ace6488432",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Row Tracker A2\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all warranties for a collector.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "File a warranty claim against a collector's warranty.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty\/claims",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/collector\/:collector_uuid\/warranty\/claims",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorWarrantyUuid\":\"550e8400-e29b-41d4-a716-446655440060\",\"description\":\"Actuator failed during normal operation within warranty period.\",\"coveredByWarranty\":true,\"cost\":249.99,\"rmaRequestUuid\":\"550e8400-e29b-41d4-a716-446655440061\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List Company Links (Granted)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all company links granted by this company."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List Received Company Links",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/received",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/received",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all company links received by this company."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Company Link",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"remoteCompanySlug\":\"acme-corp\",\"roles\":{\"companyWide\":[\"external-supplier\"],\"farms\":[{\"farmUuid\":\"30e2679c-b898-3905-baab-6fc164f16ab4\",\"roles\":[\"user\"]}],\"collectors\":[{\"collectorUuid\":\"ad6a8afb-4948-361d-a7b9-735c29c51314\",\"roles\":[\"external-supplier\"]}]},\"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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "iste",
                                    "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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "description": ""
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"roleSlug\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove Farm-Level Role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:link_uuid\/farms\/:farm_uuid\/roles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:link_uuid\/farms\/:farm_uuid\/roles\/:id",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "link_uuid",
                                    "key": "link_uuid",
                                    "value": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "description": ""
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "tempore",
                                    "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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "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": "691486ca-9558-47fa-9c01-cd7f112b996e",
                                    "description": ""
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "veniam",
                                    "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": "3d415a36-e449-423e-8c31-4061c0bf0a64",
                                    "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": "3d415a36-e449-423e-8c31-4061c0bf0a64",
                                    "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": "natus",
                                    "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": "autem",
                                    "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\":[\"6fb33192-ba2f-3bdd-976a-6ac1528a32d6\"],\"collectorUuids\":[\"d83ebff9-f52f-35ac-9baa-9f181ce1b672\"],\"excludeCollectorUuids\":[\"273179cf-08f8-3e6e-85ee-aa1d0f5d425e\"]},\"collectorUuids\":[\"64b9cb42-ce98-33df-a30b-3c585604e890\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors Updated\",\"description\":\"Updated collectors in section A\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\",\"ncu-v3\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\",\"550e8400-e29b-41d4-a716-446655440001\"],\"siteUuids\":[\"8e5df629-b076-39a5-9433-fddc00076710\"],\"collectorUuids\":[\"906057b3-3692-3906-970f-e71d0dbc0bad\"],\"excludeCollectorUuids\":[\"a192c4fd-391e-3a06-8459-de8650a14e55\"]},\"collectorUuids\":[\"6d44624f-697d-3b7c-b945-36f640648cb4\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"add\",\"collectorUuids\":[\"af16da05-e16b-3322-b864-a8ea12c81b2b\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}\/parameters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/parameters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/parameters",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parameters\":[\"sit\"]}"
                        },
                        "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\":[\"bfxxvxamctkbvdgjuznfu\"],\"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\":[\"qfcfyeiytjdzphpukxagwceu\"],\"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": "impedit",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"manageableOnly\":true,\"page\":44,\"perPage\":5}"
                        },
                        "description": "Retrieve all farms associated with the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false},{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add New Farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "corrupti",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Farm\",\"description\":\"Main production farm\",\"location\":{\"latitude\":\"51.509865\",\"longitude\":\"-0.118092\"}}"
                        },
                        "description": "Create a new farm for the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Farm Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "voluptatem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "quos",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve details of a specific farm."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "aut",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Farm\",\"description\":\"Main production farm\",\"location\":{\"latitude\":\"51.509865\",\"longitude\":\"-0.118092\"}}"
                        },
                        "description": "Update an existing farm's details."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"name\": \"Updated Farm Name\",\n    \"description\": \"Updated farm description\",\n    \"location\": {\n      \"latitude\": 51.509865,\n      \"longitude\": -0.118092\n    },\n    \"created_at\": \"2024-01-20T12:00:00Z\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Farm Collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/collector",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/collector",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null},{\"uuid\":\"aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa\",\"createdAt\":\"2026-02-12T13:40:48+00:00\",\"updatedAt\":\"2026-02-12T13:40:48+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"farmUuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"collectorTypeSlug\":\"ncu\",\"type\":\"NCU\",\"parentUuid\":null,\"childrenUuids\":[],\"serial\":\"SYSTEM-HOLDING-NCU\",\"name\":\"Unassigned Collectors\",\"description\":\"System-level holding NCU for auto-subscribed collectors awaiting assignment\",\"location\":null,\"isDecommissioned\":false,\"decommissionedAt\":null,\"decommissionReason\":null,\"currentTracker\":null,\"status\":null,\"hardwareVersion\":null,\"currentFirmware\":null,\"manufacturedAt\":null,\"deployedAt\":null,\"retiredAt\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List sections for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections",
                            "query": [
                                {
                                    "key": "enabled_only",
                                    "value": "1",
                                    "description": "Filter to only enabled sections.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Results per page (max 100).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections?enabled_only=1&page=1&perPage=25",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The UUID of the farm."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns paginated list of sections for a farm belonging to the company.\nUse this to get section UUIDs when moving collectors."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true},{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid\/sections",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The UUID of the farm."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field\",\"description\":\"Northern section of the farm\",\"enabled\":true,\"orderColumn\":1,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Primary section\"}}"
                        },
                        "description": "Creates a section within a specific farm. Requires FARM_UPDATE permission."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/firmware-keys\/workflows\/provision",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/workflows\/provision",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/workflows\/provision",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Production Farm Key\",\"description\":\"Key for firmware updates on production farm\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"expiresAt\":\"2025-12-31\",\"isActive\":true,\"plainKey\":\"abc123def456ghi789jkl012\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/c\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Production Farm Key\",\"description\":\"Key for firmware updates on production farm\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"expiresAt\":\"2025-12-31\",\"isActive\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Updated Farm Key\",\"description\":\"Updated key description\",\"expiresAt\":\"2026-06-30\",\"isActive\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}\/deactivate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List Company Invitations",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/invitations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/invitations",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all invitations for the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":null,\"email\":null,\"status\":null,\"roleSlug\":null,\"invitedBy\":{\"uuid\":null,\"name\":null},\"validUntil\":\"2026-08-15T15:50:45+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-08-15T15:50:45+00:00\"},{\"uuid\":null,\"email\":null,\"status\":null,\"roleSlug\":null,\"invitedBy\":{\"uuid\":null,\"name\":null},\"validUntil\":\"2026-08-15T15:50:45+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-08-15T15:50:45+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": "dfe19688-dc3c-3458-a306-e6174e881111",
                                    "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": "quidem",
                                    "description": "Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2024-01-01T00:00:00Z",
                                    "description": "datetime Start date for filtering (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "libero",
                                    "description": "Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "3a007886-a66e-34ad-94b8-f9a5c5c4c385",
                                    "description": "Filter by farm UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3347e97f-9bf0-39d2-aad3-c8dc53537293",
                                    "description": "Filter by farm section UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "aut",
                                    "description": "Filter by collector type (e.g., 'ncu', 'tcu')",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2024-01-31T23:59:59Z",
                                    "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": "est",
                                    "description": "Aggregation method slug from `measurement_aggregation_types` (see `\/api\/v1\/type\/data\/measurement-aggregation`). Default: avg",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "id",
                                    "description": "numeric Exclude values below threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMax",
                                    "value": "illum",
                                    "description": "numeric Exclude values above threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "nulla",
                                    "description": "Grouping: measurement_type, collector, farm_section, time_bucket, tracker. Default: measurement_type",
                                    "disabled": false
                                },
                                {
                                    "key": "includeMetadata",
                                    "value": "",
                                    "description": "Include collector info with data. Default: false",
                                    "disabled": true
                                },
                                {
                                    "key": "includeReplacements",
                                    "value": "",
                                    "description": "Include collector replacement history on the same tracker(s) when querying by collector UUIDs. Default: false",
                                    "disabled": true
                                },
                                {
                                    "key": "includeCount",
                                    "value": "1",
                                    "description": "Include sample count per bucket. Default: false",
                                    "disabled": false
                                },
                                {
                                    "key": "exportType",
                                    "value": "rerum",
                                    "description": "Export format: json, csv, xml, excel. Default: json",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "18",
                                    "description": "Page number. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "18",
                                    "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": "nulla",
                                    "description": "Filter by specific collector UUIDs",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/measurements?types%5B0%5D=quidem&from=2024-01-01T00%3A00%3A00Z&collectorUuids%5B0%5D=libero&farmUuid=3a007886-a66e-34ad-94b8-f9a5c5c4c385&farmSectionUuid=3347e97f-9bf0-39d2-aad3-c8dc53537293&collectorTypeSlug=aut&to=2024-01-31T23%3A59%3A59Z&raw=&period=1-hour&aggregation=est&valueMin=id&valueMax=illum&groupBy=nulla&includeMetadata=&includeReplacements=&includeCount=1&exportType=rerum&page=18&perPage=18&types%5B%5D%5B0%5D=temperature&types%5B%5D%5B1%5D=humidity&collectorUuids%5B%5D%5B0%5D=nulla",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "dolores",
                                    "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": "sequi",
                                    "description": "Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2025-01-01T00:00:00Z",
                                    "description": "Start timestamp (ISO 8601). Must be a valid date. Must be a date before now.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "velit",
                                    "description": "Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d",
                                    "description": "Filter by farm UUID. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa",
                                    "description": "Filter by farm section UUID. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2025-01-02T00:00:00Z",
                                    "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). Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "avg",
                                    "description": "Aggregation method slug (enabled aggregation types only). Must match an existing stored value.",
                                    "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%5B0%5D=sequi&from=2025-01-01T00%3A00%3A00Z&collectorUuids%5B0%5D=velit&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": "iusto",
                                    "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": "facere",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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": "6a314dde-d06f-3058-a01e-49a05f516cd9",
                                    "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": "9a74918f-ce20-3a60-8768-dce5df077ba7",
                                    "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": "540380b6-ca54-363c-b84a-adf3112bab15",
                                    "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": "e4cedd2b-0433-3375-963a-ef7bac97b520",
                                    "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": "411cde3a-4b41-325d-a506-1232856283a4",
                                    "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": "5719b7af-e76e-3d06-bbf8-407782716bc3",
                                    "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": "d5a9768b-f12a-3551-af1d-9c892662c0c8",
                                    "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": "644a859a-a5e3-38ce-bbbf-07fe19ecdecb",
                                    "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": "688ea07d-efb9-3911-89e2-a6c2f80c476f",
                                    "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": "5260afc4-b835-3f51-a396-2c47b125621c",
                                    "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": "e3beb9c4-289d-3a49-8b2b-da5c5e9cb5a9",
                                    "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": "9262e291-c218-390a-b7cd-d417d62936af",
                                    "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": "quisquam",
                                    "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": "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": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"text\",\"name\":\"Critical Alert Template\",\"subjectTemplate\":\"[Alert] Collector Offline\",\"bodyTemplate\":\"Alert: Collector went offline at Farm Alpha.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/c\/{company_slug}\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"html\",\"name\":\"Updated Alert Template\",\"subjectTemplate\":\"[Updated] Collector Offline\",\"bodyTemplate\":\"<p>Alert rule updated for Collector Alpha.<\\\/p>\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/notification-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/notification-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/notification-policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "odio",
                                    "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": "porro",
                                    "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": "b84ab88d-7a8e-308c-a7ed-2fd6d7499c81",
                                    "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": "a8137db5-f068-3b1c-bdbb-62ed9c09f06a",
                                    "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": "d649db23-d3a8-3457-ae75-cdc9fe7e85aa",
                                    "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": "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": "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": "dolor",
                                    "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": "2ffb4ee6-d738-3f6f-a312-d77445bffb3b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "dolorem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "dignissimos",
                                    "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": "6432713a-f4a7-3942-a7b1-7fcb7d884767",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "repellat",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "blanditiis",
                                    "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": "143082c6-0dda-36db-bd6b-9785f42fef0c",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "repellat",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "delectus",
                                    "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": "744a5859-9d08-3714-a1cd-917eb22e3ded",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "asperiores",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "et",
                                    "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": "f33f4333-cc21-3ffa-bd0c-d36f684d4503",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "eius",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "ducimus",
                                    "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": "cb16b8d4-28a8-31bf-8bf9-647ae0ecdfb5",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "labore",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "nihil",
                                    "description": "The UUID of the RMA request"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"note\":\"Customer contacted regarding shipping label\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns details of a specific farm section. Requires FARM_VIEW permission."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Updated\",\"description\":\"Updated description\",\"enabled\":false,\"orderColumn\":2,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Updated notes\"}}"
                        },
                        "description": "Updates an existing farm section. Requires FARM_UPDATE permission.\nThe \"Unassigned\" section cannot be edited."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Deletes a farm section. Requires FARM_UPDATE permission.\nThe \"Unassigned\" section cannot be deleted."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk assign collectors to section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/section\/:section_uuid\/collectors\/bulk-assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/section\/:section_uuid\/collectors\/bulk-assign",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorUuids\":[\"550e8400-e29b-41d4-a716-446655440001\",\"550e8400-e29b-41d4-a716-446655440002\"]}"
                        },
                        "description": "Assigns multiple collectors to a specific farm section. The farm is derived\nfrom the section automatically. Collectors already on this farm+section are skipped.\nRequires COLLECTOR_UPDATE permission."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\": {\"assigned\": 2, \"skipped\": 1, \"collectors\": [...]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"message\": \"This action is unauthorized.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"error\": \"Section not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\": \"Validation failed\", \"errors\": {\"collectorUuids\": [\"At least one collector UUID is required\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get current weather for all farms in a company",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get current weather for a specific farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/current",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get weather history for a specific farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/history",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/history",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2025-01-01\",\"to\":\"2025-01-31\",\"page\":1,\"perPage\":25,\"limit\":13}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Refresh weather data for a specific farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/weather\/farm\/:farm_uuid\/refresh",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/device-model-insights\/{collector_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/device-model-insights\/:collector_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/device-model-insights\/:collector_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/firmware",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceModelTypeSlug\":\"ncu-v2\",\"enabled\":true,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store Mobile Audit Events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/audit-events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/audit-events",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "id",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceUuid\":\"550e8400-e29b-41d4-a716-446655440070\",\"events\":[{\"eventUuid\":\"550e8400-e29b-41d4-a716-446655440071\",\"occurredAt\":\"2026-02-17T10:00:00Z\",\"eventName\":\"collector_connection\",\"actionName\":\"connect\",\"operatorLabel\":\"operator-1\",\"connectionType\":\"bluetooth\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440072\",\"context\":{\"signalRssi\":-64},\"request\":{\"source\":\"mobile\"},\"result\":{\"status\":\"success\"},\"geo\":{\"lat\":33.4484,\"lng\":-112.074}}]}"
                        },
                        "description": "Upload a batch of mobile audit events for a company.\nDuplicate eventUuids are silently skipped (idempotent)."
                    },
                    "response": []
                },
                {
                    "name": "Upload NCU measurement and parameter data.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/ncu-data",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/ncu-data",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceUuid\":\"550e8400-e29b-41d4-a716-446655440080\",\"batchUuid\":\"550e8400-e29b-41d4-a716-446655440081\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440082\",\"measurements\":[{\"timestamp\":\"2026-02-17T10:05:00Z\",\"data\":{\"ambientTemp\":31.2}}],\"parameters\":{\"firmwareVersion\":\"1.18.4\",\"mode\":\"auto\"}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload NCU raw log file.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/ncu-logs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/ncu-logs",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "deviceUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440090",
                                    "type": "text",
                                    "description": "UUID of the mobile device uploading the log file. Must be a valid UUID."
                                },
                                {
                                    "key": "collectorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440091",
                                    "type": "text",
                                    "description": "UUID of the collector referenced by the log. Must be a valid UUID."
                                },
                                {
                                    "key": "notes",
                                    "value": "Captured right after an intermittent disconnect.",
                                    "type": "text",
                                    "description": "Optional operator notes for the uploaded logs. Must not be greater than 1000 characters."
                                },
                                {
                                    "key": "logFile",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all enabled document library sections.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all enabled categories for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all enabled documents for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Generate signed icon URLs for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate signed icon URLs for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate signed icon URLs for a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/documents\/:documentSectionDocument_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/documents\/:documentSectionDocument_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate a signed download URL for a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/download-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/download-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/email\/resend",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/resend",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/resend"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture\/:format",
                            "query": [
                                {
                                    "key": "token",
                                    "value": "54|VYSnJgtQsXZWN45UOPc3y16VArMBQ1KM1eMdIxLR417e6478",
                                    "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\":\"expedita\"}"
                        },
                        "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. Must match an existing stored value.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/document\/:format?documentTypeSlug=proof-of-address",
                            "variable": [
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "nobis",
                                    "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": "8F8A1e8f-b777-dcEA-Ec3D-EBaf3F4E4aaf",
                                    "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\/rule-capabilities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/rule-capabilities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/rule-capabilities",
                            "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-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,\"definition\":{\"trigger\":{\"sourceType\":\"weather-observed\",\"subjectType\":\"weather-metric\",\"target\":{\"kind\":\"weather-metric\",\"slug\":\"wind-speed\"}},\"condition\":{\"groupOperator\":\"and\",\"operator\":\"gt\",\"valueNumericMin\":18.5,\"valueNumericMax\":null},\"action\":{\"type\":\"send-notification\",\"failureMode\":\"stop-on-failure\",\"notificationPolicyUuid\":\"550e8400-e29b-41d4-a716-446655440103\"},\"schemaVersion\":13}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}\/publish-definition",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid\/publish-definition",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid\/publish-definition",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "f27b026e-dfa7-3fc9-b6cf-5e0fa71b67ba",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"changeReason\":\"azkzqqusneenjafe\",\"dryRunConfirmed\":true,\"dryRunToken\":\"poymykqjnglmilfstmrwij\",\"publishConfirmed\":false}"
                        },
                        "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": "fadf75f2-9f7c-3ccc-9d41-e5813d00aef0",
                                    "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": "caa94a5e-dd8b-35f9-a3f6-dd80c060090b",
                                    "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,\"definition\":{\"trigger\":{\"sourceType\":\"measurement\",\"subjectType\":\"measurement-value\",\"target\":{\"kind\":\"collector-measurement\",\"slug\":\"ncu-cpu-temperature\"}},\"condition\":{\"groupOperator\":\"and\",\"operator\":\"gt\",\"valueNumericMin\":70,\"valueNumericMax\":null},\"action\":{\"type\":\"send-notification\",\"failureMode\":\"stop-on-failure\",\"notificationPolicyUuid\":\"550e8400-e29b-41d4-a716-446655440103\"},\"schemaVersion\":14}}"
                        },
                        "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": "07267af4-6456-3a43-9227-42ea28864ad8",
                                    "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": "eedc33d2-d7a6-3af0-b267-99b98caf7716",
                                    "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": "1c88d6cc-7980-3bb7-91d7-1876f12541da",
                                    "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": "d774b870-c0ab-38aa-9ca6-b5ec199f31e7",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-events",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-events",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-events\/{automationEvent_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-events\/:automationEvent_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationEvent_uuid",
                                    "key": "automationEvent_uuid",
                                    "value": "02ccea26-141c-4f51-9aea-470b69cea45c",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation-events\/manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-events\/manual",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-events\/manual",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"emergency_stow\",\"payload\":{\"reason\":\"high_wind\",\"speed\":75},\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440002\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-executions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-executions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-executions",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-executions\/{automationExecution_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-executions\/:automationExecution_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-executions\/:automationExecution_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationExecution_uuid",
                                    "key": "automationExecution_uuid",
                                    "value": "e39533c9-3639-3492-93c4-0089adeae77f",
                                    "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": "2dd29a3f-9eba-380d-890e-177ebfc40767",
                                    "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": "19b52d92-128b-339f-8623-a76b1bab7dde",
                                    "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": "bacc8d9f-88d0-36f3-b40a-b624da995b91",
                                    "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": "6a9ea29f-c9bb-3a54-a1ee-fba82cab9bbe",
                                    "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": "ff427e4a-db34-38e4-b32e-4a21c16a04f0",
                                    "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": "e2ddfb9e-49cf-3c9f-8867-499b841dca11",
                                    "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": "e1595538-8131-3ae1-98f2-e0ff68e50eaf",
                                    "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": "a0873b75-3bde-3e68-b43a-e97c2837a1fc",
                                    "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": "f1caf41d-cb08-30f1-9c65-fdc19518128a",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation\/test\/webhook-inbox\/setup",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-inbox\/setup",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation\/test\/webhook-inbox\/setup",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Automation Test Inbox\",\"resetEvents\":false,\"rotateSecret\":true,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440010\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU-001\",\"description\":\"Main control unit for section A\",\"collectorTypeSlug\":\"ncu\",\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440123\",\"serial\":\"NCU-2025-001234\",\"enabled\":true,\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440001\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/summary",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"serial\":\"NCU-2025-001234\",\"deviceModelTypeSlug\":\"ncu-x100-001\",\"hardwareVersionTypeSlug\":\"v1-0-0\",\"manufacturedAt\":\"2025-01-15\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/bulk-register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/bulk-register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/bulk-register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"devices\":[{\"serial\":\"NCU-2025-001234\",\"deviceModelTypeSlug\":\"ncu-x100-001\",\"hardwareVersionTypeSlug\":\"v1-0-0\",\"manufacturedAt\":\"2025-01-15\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collectors\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU-001 Updated\",\"description\":\"Updated control unit for section A\",\"collectorTypeSlug\":\"tcu\",\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440123\",\"serial\":\"NCU-2025-001234\",\"enabled\":true,\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"parentUuid\":\"550e8400-e29b-41d4-a716-446655440001\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collectors\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/{collector_uuid}\/status-history",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/status-history",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/status-history",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collectors\/{collector_uuid}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/status",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"testing\",\"reason\":\"Moving to testing phase after QA review\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collectors\/{collector_uuid}\/timeline",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/timeline",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/timeline",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/collectors\/{collector_uuid}\/transfer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/transfer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/transfer",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"targetCompanySlug\":\"acme-solar\",\"reason\":\"Customer contract change\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/unassigned-collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/unassigned-collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/unassigned-collectors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/{collector_uuid}\/assign",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/assign",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parentCollectorUuid\":\"550e8400-e29b-41d4-a716-446655440321\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/collectors\/{collector_uuid}\/unlink",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/unlink",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/unlink",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/sa\/collectors\/{collector_uuid}\/change-type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/change-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/change-type",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorTypeSlug\":\"tcu\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Assign a warranty to a collector.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collectors\/:collector_uuid\/warranty",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collectors\/:collector_uuid\/warranty",
                            "variable": [
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"warrantyTypeSlug\":\"standard-two-year\",\"warrantyStart\":\"2026-02-17\",\"warrantyEnd\":\"2028-02-17\",\"notes\":\"Coverage includes actuator and controller board.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/farms",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/farms",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Solar Farm Alpha\",\"description\":\"Main solar installation in the northern region\",\"companySlug\":\"solar-energy-corp\",\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/farms\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/farms\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Solar Farm Alpha Updated\",\"description\":\"Updated solar installation details\",\"locationJson\":{\"latitude\":-33.8688,\"longitude\":151.2093},\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/farms\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Bulk assign collectors to a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/collectors\/bulk-assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/collectors\/bulk-assign",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "The UUID of the farm."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorUuids\":[\"550e8400-e29b-41d4-a716-446655440001\",\"550e8400-e29b-41d4-a716-446655440002\"]}"
                        },
                        "description": "Assign multiple collectors to a farm in a single request.\nCollectors must belong to the same company as the farm."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Assigned 5 collector(s) to farm\",\n  \"data\": {\n    \"assigned\": 5,\n    \"skipped\": 2,\n    \"collectors\": [...]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List sections for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/sections",
                            "query": [
                                {
                                    "key": "enabled_only",
                                    "value": "1",
                                    "description": "Filter to only enabled sections.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Results per page (max 100).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/sections?enabled_only=1&page=1&perPage=25",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "eum",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true},{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/sections",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "voluptates",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field\",\"description\":\"Northern section of the farm\",\"enabled\":true,\"orderColumn\":1,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Primary section\"}}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "sequi",
                                    "description": "The UUID of the section"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "error",
                                    "description": "The UUID of the section"
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"North Field Updated\",\"description\":\"Updated description\",\"enabled\":false,\"orderColumn\":2,\"locationJson\":{\"latitude\":51.509865,\"longitude\":-0.118092},\"metadata\":{\"notes\":\"Updated notes\"}}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"147594ba-6f75-4b06-9daf-4c9dc58b34c1\",\"name\":\"Unassigned\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":null,\"locationJson\":null,\"metadata\":null,\"createdAt\":\"2026-01-14T19:48:46+00:00\",\"updatedAt\":\"2026-01-16T10:41:36+00:00\",\"isUnassigned\":true}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a farm section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "quibusdam",
                                    "description": "The UUID of the section"
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk assign collectors to section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farm-sections\/:section_uuid\/collectors\/bulk-assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farm-sections\/:section_uuid\/collectors\/bulk-assign",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "147594ba-6f75-4b06-9daf-4c9dc58b34c1",
                                    "description": ""
                                },
                                {
                                    "id": "section",
                                    "key": "section",
                                    "value": "550e8400-e29b-41d4-a716-446655440123",
                                    "description": "The UUID of the farm section."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorUuids\":[\"550e8400-e29b-41d4-a716-446655440001\",\"550e8400-e29b-41d4-a716-446655440002\"]}"
                        },
                        "description": "Assigns multiple collectors to a specific farm section. The farm is derived\nfrom the section automatically. Collectors already on this farm+section are skipped."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\": {\"assigned\": 2, \"skipped\": 1, \"collectors\": [...]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"error\": \"Section not found\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\": \"Validation failed\", \"errors\": {\"collectorUuids\": [\"At least one collector UUID is required\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List trackers for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers",
                            "query": [
                                {
                                    "key": "sectionUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440001",
                                    "description": "Filter by section UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "isCurrent",
                                    "value": "1",
                                    "description": "Filter by current status.",
                                    "disabled": false
                                },
                                {
                                    "key": "placed",
                                    "value": "1",
                                    "description": "Filter by placement status.",
                                    "disabled": false
                                },
                                {
                                    "key": "sectioned",
                                    "value": "1",
                                    "description": "Filter by section assignment.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Results per page (max 200).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers?sectionUuid=550e8400-e29b-41d4-a716-446655440001&isCurrent=1&placed=1&sectioned=1&perPage=50",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "nisi",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}},{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get tracker statistics for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/stats",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "eos",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"totalCurrent\": 150,\n  \"totalHistoric\": 45,\n  \"placed\": 120,\n  \"unplaced\": 30,\n  \"sectioned\": 100,\n  \"unsectioned\": 50,\n  \"placementPercentage\": 80.0\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get section statistics for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/section-stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/section-stats",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "voluptate",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"sections\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"name\": \"North Field\",\n      \"slug\": \"north-field\",\n      \"enabled\": true,\n      \"orderColumn\": 1,\n      \"trackerCount\": 50,\n      \"placedCount\": 45,\n      \"unplacedCount\": 5\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Bulk update trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/bulk-update",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/bulk-update",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "libero",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tracker_uuids\":[\"550e8400-e29b-41d4-a716-446655440001\"],\"row\":5,\"column\":10,\"width_m\":\"6.0\",\"height_m\":\"2.5\",\"angle_deg\":\"15.0\",\"farm_section_uuid\":\"550e8400-e29b-41d4-a716-446655440002\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Updated 10 trackers\",\n  \"count\": 10\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Auto-place trackers in a grid",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "corrupti",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"section_uuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"tracker_uuids\":[\"550e8400-e29b-41d4-a716-446655440002\"],\"start_row\":1,\"start_column\":1,\"gap_width_m\":\"1.0\",\"gap_height_m\":\"1.0\",\"columns_per_row\":10,\"angle_deg\":\"0.0\",\"apply\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Trackers placed successfully\",\n  \"applied\": true,\n  \"count\": 25,\n  \"placements\": [\n    {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440002\",\n      \"collectorUuid\": \"550e8400-e29b-41d4-a716-446655440003\",\n      \"row\": 1,\n      \"column\": 1,\n      \"angleDeg\": 0.0\n    }\n  ],\n  \"section\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"name\": \"North Field\",\n    \"slug\": \"north-field\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Auto-place unplaced trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place-unplaced",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/auto-place-unplaced",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "magnam",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"section_uuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"start_row\":1,\"start_column\":1,\"columns_per_row\":10,\"apply\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Unplaced trackers filled successfully\",\n  \"applied\": true,\n  \"count\": 15,\n  \"placements\": [...]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Validate layout for conflicts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/validate-layout",
                            "query": [
                                {
                                    "key": "sectionUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440001",
                                    "description": "Optional section UUID filter.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/validate-layout?sectionUuid=550e8400-e29b-41d4-a716-446655440001",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "ut",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"valid\": false,\n  \"totalTrackers\": 150,\n  \"conflicts\": 2,\n  \"duplicates\": [\n    {\n      \"row\": 5,\n      \"column\": 10,\n      \"farmSectionUuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"trackerUuids\": [\"uuid1\", \"uuid2\"]\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Resolve overlapping trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/resolve-overlaps",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/resolve-overlaps",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "iure",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sectionUuid\":\"550e8400-e29b-41d4-a716-446655440001\",\"apply\":true}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Resolved 2 overlapping tracker(s)\",\n  \"data\": {\n    \"applied\": true,\n    \"resolvedCount\": 2,\n    \"remainingConflictCount\": 0,\n    \"placements\": [\n      {\n        \"trackerUuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n        \"collectorUuid\": \"550e8400-e29b-41d4-a716-446655440002\",\n        \"previousRow\": 1,\n        \"previousColumn\": 1,\n        \"newRow\": 1,\n        \"newColumn\": 2\n      }\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Snap trackers to a section",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/snap-to-section",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/snap-to-section",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "illo",
                                    "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\":\"fc5c80eb-264c-340b-bf52-eda27ad4a359\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}},{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a single tracker",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/trackers\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/trackers\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "a205ee53-a5ce-4ecf-8103-d1ace6488432",
                                    "description": ""
                                },
                                {
                                    "id": "tracker",
                                    "key": "tracker",
                                    "value": "facilis",
                                    "description": "The UUID of the tracker"
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"row\":5,\"column\":10,\"widthM\":\"6.0\",\"heightM\":\"2.5\",\"angleDeg\":\"15.0\",\"farmSectionUuid\":\"550e8400-e29b-41d4-a716-446655440002\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Tracker updated successfully\",\n  \"data\": {\n    \"trackerUuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n    \"layout\": {\n      \"uuid\": \"550e8400-e29b-41d4-a716-446655440001\",\n      \"row\": 5,\n      \"column\": 10,\n      \"widthM\": 6.0,\n      \"heightM\": 2.5,\n      \"angleDeg\": 15.0,\n      \"farmSectionUuid\": \"550e8400-e29b-41d4-a716-446655440002\"\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete (end) a single tracker",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/trackers\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/trackers\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "a205ee53-a5ce-4ecf-8103-d1ace6488432",
                                    "description": ""
                                },
                                {
                                    "id": "tracker",
                                    "key": "tracker",
                                    "value": "consectetur",
                                    "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. Must match an existing stored value.",
                                    "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. Must match an existing stored value.",
                                    "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\":\"suscipit\",\"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\":\"ullam\",\"isPrimary\":false,\"notes\":\"non\"}]}"
                        },
                        "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": "suscipit",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "corporis",
                                    "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\":[\"be7ba3ab-f3fb-3932-90a6-8d9c1c2efc79\"],\"collectorUuids\":[\"1de98208-5c5c-3bc0-98ca-8f591ef614b1\"],\"excludeCollectorUuids\":[\"4e11d9b0-fe7b-36d4-bccd-453f232f8c9c\"]},\"collectorUuids\":[\"5d9f792e-4d59-3f3b-9102-7efc8a3e1667\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors Updated\",\"description\":\"Updated collectors in section A\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\",\"ncu-v3\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\",\"550e8400-e29b-41d4-a716-446655440001\"],\"siteUuids\":[\"47615d57-ccce-32b9-b866-646bb4e426ce\"],\"collectorUuids\":[\"b91120e8-d226-344f-bdad-6c9104aa6c34\"],\"excludeCollectorUuids\":[\"4b2b9e74-d31b-3a76-9f3d-5e484c75fe4c\"]},\"collectorUuids\":[\"0daf720a-f50b-3f1b-8213-283a80c42a78\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Section A Collectors Updated\",\"description\":\"Updated collectors in section A\",\"targetFilters\":{\"deviceModelTypeSlugs\":[\"ncu-v2\",\"tcu-v1\",\"ncu-v3\"],\"farmUuids\":[\"550e8400-e29b-41d4-a716-446655440000\",\"550e8400-e29b-41d4-a716-446655440001\"],\"siteUuids\":[\"c7300a4d-7332-3abb-b78c-9dfef89a9982\"],\"collectorUuids\":[\"06cca998-3136-3fc0-9741-d750085fee48\"],\"excludeCollectorUuids\":[\"9c3001e4-7a22-38f8-b25d-c8b07cf65daf\"]},\"collectorUuids\":[\"90d15e71-5ee1-3019-9395-1de86a9e22b8\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}\/collectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/collectors",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"action\":\"add\",\"collectorUuids\":[\"47276e37-d044-32fb-9e87-a11d646c0229\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/device-groups\/{deviceGroup_uuid}\/parameters",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/parameters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/device-groups\/:deviceGroup_uuid\/parameters",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "deviceGroup_uuid",
                                    "key": "deviceGroup_uuid",
                                    "value": "a2f63e5f-8488-4b5f-a10e-04616e26f78d",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parameters\":[\"quia\"]}"
                        },
                        "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": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Technical Manuals\",\"description\":\"Technical documentation and user manuals for all product lines.\",\"enabled\":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": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload an icon image for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"similique\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove the icon from a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Reorder document library sections.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/reorder"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"orderedUuids\":[\"4fd78221-d1f0-3620-bc80-57296c39643a\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all categories for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new category within a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Installation Guides\",\"description\":\"Step-by-step installation guides for field technicians.\",\"enabled\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update an existing category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Installation Guides\",\"description\":\"Step-by-step installation guides for field technicians.\",\"enabled\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload an icon image for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"rerum\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove the icon from a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Reorder categories within a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/reorder",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"orderedUuids\":[\"26cfa9f9-6172-3d39-8ba5-90c6f3ca9fa1\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Move a category to a different section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/move",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/move",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sectionUuid\":\"550e8400-e29b-41d4-a716-446655440000\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all documents for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload a new document into a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name",
                                    "value": "NCU Installation Manual v2.1",
                                    "type": "text",
                                    "description": "The display name of the document. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Complete installation and commissioning guide for NCU v2 units.",
                                    "type": "text",
                                    "description": "An optional description of the document. Must not be greater than 2000 characters."
                                },
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Whether the document is visible to non-SA users. Defaults to true."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload an icon image for a document record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"assumenda\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove the icon from a document record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update document metadata.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU Installation Manual v2.1\",\"description\":\"Complete installation and commissioning guide for NCU v2 units.\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Move a document to a different category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/move",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/move",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"categoryUuid\":\"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/companies\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/companies\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Production Farm Key\",\"description\":\"Key for firmware updates on production farm\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"expiresAt\":\"2025-12-31\",\"isActive\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Updated Farm Key\",\"description\":\"Updated key description\",\"expiresAt\":\"2026-06-30\",\"isActive\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}\/deactivate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List available firmware versions (global scope)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceModelTypeSlug\":\"ncu-v2\",\"enabled\":true,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload new firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "version",
                                    "value": "v1.2.3",
                                    "type": "text",
                                    "description": "Semantic version of the firmware. Must match the regex \/^v?\\d+\\.\\d+\\.\\d+(?:-[0-9A-Za-z.-]+)?(?:\\+[0-9A-Za-z.-]+)?$\/. Must not be greater than 50 characters."
                                },
                                {
                                    "key": "deviceModelTypeSlug",
                                    "value": "ncu-v2",
                                    "type": "text",
                                    "description": "Slug of the target device model type. Must match an existing stored value."
                                },
                                {
                                    "key": "name",
                                    "value": "NCU Firmware v1.2.3",
                                    "type": "text",
                                    "description": "Display name for the firmware. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Bug fixes and performance improvements",
                                    "type": "text",
                                    "description": "Description of the firmware release. Must not be greater than 1000 characters."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show firmware details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update firmware metadata",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tokenRequired\":true,\"name\":\"NCU Controller Firmware\",\"description\":\"Firmware package for NCU controller devices\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Enable\/disable firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:firmware_slug\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:firmware_slug\/toggle",
                            "variable": [
                                {
                                    "id": "firmware_slug",
                                    "key": "firmware_slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete firmware (soft delete)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440111\",\"notificationChannelType\":\"email\",\"name\":\"Ops Email Alerts\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "e96e647d-6397-3762-8b5f-aeb553d0360d",
                                    "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": "4727b8c0-6506-3c4a-9b39-0bd05079ddeb",
                                    "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": "d2d9c3f1-2e61-3e75-8c6c-e34e8e4ef105",
                                    "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": "9a05f8ac-d301-39b5-b94b-26268968261d",
                                    "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": "d99932f4-2244-3a2f-be4f-37ab532ef60c",
                                    "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": "66037e02-568d-325b-9a56-8a3797cd71fe",
                                    "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": "e8ec105c-d1be-32c6-b2d8-95f772595912",
                                    "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": "c12727ff-7177-383f-aa4f-66078442a499",
                                    "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": "b25ebabf-9b69-3bed-8673-12d8ea2cfb47",
                                    "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": "64f29a87-36cd-3aac-8ab5-24fdb71bf37c",
                                    "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": "ea3420b0-3e48-3f1c-b14a-1fb745e44cd7",
                                    "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": "03dfccf8-3fa4-3bce-802d-42d6f55da31e",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/notification-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/notification-templates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"text\",\"name\":\"Critical Alert Template\",\"subjectTemplate\":\"[Alert] Collector Offline\",\"bodyTemplate\":\"Alert: Collector went offline at Farm Alpha.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"notificationChannelType\":\"email\",\"notificationTemplateFormatType\":\"html\",\"name\":\"Updated Alert Template\",\"subjectTemplate\":\"[Updated] Collector Offline\",\"bodyTemplate\":\"<p>Alert rule updated for Collector Alpha.<\\\/p>\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/notification-templates\/{notificationTemplate_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/notification-templates\/:notificationTemplate_uuid",
                            "variable": [
                                {
                                    "id": "notificationTemplate_uuid",
                                    "key": "notificationTemplate_uuid",
                                    "value": "d4d5b924-eff1-44a7-bcc9-b271d8207888",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-policies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440121\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440122\",\"name\":\"Critical Weather Policy\",\"enabled\":true,\"notificationChannelUuid\":\"550e8400-e29b-41d4-a716-446655440123\",\"notificationTemplateUuid\":\"550e8400-e29b-41d4-a716-446655440124\",\"labels\":[{\"key\":\"severity\",\"value\":\"critical\"}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-policies\/{notificationPolicy_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-policies\/:notificationPolicy_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationPolicy_uuid",
                                    "key": "notificationPolicy_uuid",
                                    "value": "e01a533c-32c8-3f42-bb97-d9aaf69efca0",
                                    "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": "0bc67683-12d1-3624-8256-bdd433f8336e",
                                    "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": "6591188c-05b4-3596-a034-2c1884de7a10",
                                    "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": "9b0482e5-d47e-3ffc-b896-e408eb3d4ca8",
                                    "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": "36b9bc0b-1963-368b-a471-5a4599c2aaa7",
                                    "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": "179ef811-b908-39f3-83f2-db250f94103d",
                                    "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": "7c63dea7-8a94-3258-9f97-061cf1d351e6",
                                    "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": "2eeeffcc-1665-31d4-88c3-a9d2be6728f1",
                                    "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": "d2634471-a138-3165-aeea-db830178f5a4",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"fvw\"}"
                        },
                        "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": "91dbae27-3871-3d4d-a6a1-c4294d3e9191",
                                    "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": "f3699c63-3cbd-31f6-bfee-a484ef1aaca7",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"note\":\"Customer confirmed issue is reproducible after reboot.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/tracklab\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/tracklab\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"new.user@tracklab.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/tracklab\/users\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/tracklab\/users\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"updated.user@tracklab.com\",\"firstName\":\"John\",\"lastName\":\"Smith\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1987654321\",\"role\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/tracklab\/users\/{user_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user\":\"a26e3587-553d-3280-96ae-9b2e5d046cd4\"}"
                        },
                        "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\":1786809049,\"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": "aut",
                                    "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": "ab",
                                    "description": "Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2025-01-01T00:00:00Z",
                                    "description": "Start timestamp (ISO 8601). Must be a valid date. Must be a date before now.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "consectetur",
                                    "description": "Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d",
                                    "description": "Filter by farm UUID. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa",
                                    "description": "Filter by farm section UUID. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2025-01-02T00:00:00Z",
                                    "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). Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "avg",
                                    "description": "Aggregation method slug (enabled aggregation types only). Must match an existing stored value.",
                                    "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%5B0%5D=ab&from=2025-01-01T00%3A00%3A00Z&collectorUuids%5B0%5D=consectetur&farmUuid=d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d&farmSectionUuid=3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa&collectorTypeSlug=ncu&to=2025-01-02T00%3A00%3A00Z&raw=&period=minute&aggregation=avg&valueMin=0&valueMax=1000&groupBy=measurement_type&includeMetadata=1&includeReplacements=&includeCount=&exportType=json&page=1&perPage=100",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid signature.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/open\/mcp\/c\/{company_slug}\/collector-graph\/{format}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/open\/mcp\/c\/:company_slug\/collector-graph\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/open\/mcp\/c\/:company_slug\/collector-graph\/:format",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "assumenda",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "30"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "28"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid signature.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Profile Picture (Signed URL)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/profile\/picture\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "eyJpdiI6...",
                                    "description": "The encrypted signed token."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "square-48-webp",
                                    "description": "The image format\/conversion name."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a user's profile picture using a signed URL token.\nThe token contains encrypted user UUID and expiry timestamp.\n\nURL format: \/me\/profile\/picture\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The image file stream",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"message\": \"Invalid or expired token.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"User not found.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/email\/verify\/{id}\/{hash}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/verify\/:id\/:hash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/verify\/:id\/:hash",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "soluta",
                                    "description": "The ID of the verify."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "amet",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "6"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "4"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\"success\":false,\"message\":\"Invalid verification link\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Serve a section icon via signed token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:sectionUuid\/icon\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:sectionUuid\/icon\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "sectionUuid",
                                    "key": "sectionUuid",
                                    "value": "34de3b78-d255-392f-97a3-d12c642cc1c8",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "est",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "hic",
                                    "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": "53c93076-090e-3dd0-9cff-a9020e1cef78",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "alias",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "non",
                                    "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": "3ed49bc1-c636-349d-aefe-cb3ba868f4e5",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "quia",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "fuga",
                                    "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": "219f4cd3-d654-3aac-90a0-cd379bed17cd",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "quis",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "officia",
                                    "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": "id",
                                    "description": ""
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "b07eb03c-9962-3a73-b0bf-5e7e7a2ac2c6",
                                    "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": "dolor",
                                    "description": ""
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "82c09d77-e31c-36fa-adb9-209fe3ea9d10",
                                    "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": "rzukuswdmgvizqyyyjo",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "jrznwzcakgx",
                                    "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": "lnv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-action-failure-mode?page=1&perPage=20&sort=rzukuswdmgvizqyyyjo&sortBy=jrznwzcakgx&sortOrder=desc&filter%5B%5D=&filter.search=lnv&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-action-failure-mode?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "sco",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "szgpngypsae",
                                    "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": "zxmrbdooc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-action-target?page=1&perPage=20&sort=sco&sortBy=szgpngypsae&sortOrder=asc&filter%5B%5D=&filter.search=zxmrbdooc&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-action-target?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "yhnhhiobmspiyvlcoju",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mahbxlhqbrymymgutav",
                                    "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": "dyn",
                                    "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?page=1&perPage=20&sort=yhnhhiobmspiyvlcoju&sortBy=mahbxlhqbrymymgutav&sortOrder=desc&filter%5B%5D=&filter.search=dyn&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-action?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "usdtajqrokcpxosxhu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "swxvwjfluwxahsyfmyxgdi",
                                    "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": "gnlyhvelc",
                                    "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-condition-group-operator?page=1&perPage=20&sort=usdtajqrokcpxosxhu&sortBy=swxvwjfluwxahsyfmyxgdi&sortOrder=asc&filter%5B%5D=&filter.search=gnlyhvelc&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-condition-group-operator?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "nioa",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "bsznn",
                                    "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": "rnxhwupnkpkcaxhwfbw",
                                    "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=nioa&sortBy=bsznn&sortOrder=desc&filter%5B%5D=&filter.search=rnxhwupnkpkcaxhwfbw&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-condition-operator?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "nidivykvziyxti",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "veeosnheboq",
                                    "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": "bdfhpodasusrjpyhtl",
                                    "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-source?page=1&perPage=20&sort=nidivykvziyxti&sortBy=veeosnheboq&sortOrder=desc&filter%5B%5D=&filter.search=bdfhpodasusrjpyhtl&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-event-source?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "lvynqif",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "decaecdtmcnoiugmixtlmoe",
                                    "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": "sbyxnkibaejizopv",
                                    "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=lvynqif&sortBy=decaecdtmcnoiugmixtlmoe&sortOrder=desc&filter%5B%5D=&filter.search=sbyxnkibaejizopv&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-event-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "scrsxtcxwnlirmpwlyjla",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "fktwgdyhjuetlojekpphjnse",
                                    "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": "vtznmjihifltnb",
                                    "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-execution-status?page=1&perPage=20&sort=scrsxtcxwnlirmpwlyjla&sortBy=fktwgdyhjuetlojekpphjnse&sortOrder=asc&filter%5B%5D=&filter.search=vtznmjihifltnb&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-execution-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "vhfdiaxnvy",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mvklygpacniep",
                                    "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": "q",
                                    "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=vhfdiaxnvy&sortBy=mvklygpacniep&sortOrder=asc&filter%5B%5D=&filter.search=q&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-match-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "jjhpgnsxzflsrnkufffjqjg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qqior",
                                    "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": "bvrn",
                                    "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-rule-status?page=1&perPage=20&sort=jjhpgnsxzflsrnkufffjqjg&sortBy=qqior&sortOrder=asc&filter%5B%5D=&filter.search=bvrn&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-rule-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "gbvrctuglaxtaryopv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "lknxcgn",
                                    "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": "jgjbbwouhlqqcfehjsljnoqcg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-trigger-subject?page=1&perPage=20&sort=gbvrctuglaxtaryopv&sortBy=lknxcgn&sortOrder=desc&filter%5B%5D=&filter.search=jgjbbwouhlqqcfehjsljnoqcg&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject?page=1\",\"last\":\"https:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-trigger-subject\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-weather-metric",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-weather-metric",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "imyzupliuhnpojlcb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "dhowxbcs",
                                    "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": "jnrgyiivzvythbibirxh",
                                    "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-weather-metric?page=1&perPage=20&sort=imyzupliuhnpojlcb&sortBy=dhowxbcs&sortOrder=desc&filter%5B%5D=&filter.search=jnrgyiivzvythbibirxh&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric?page=1\",\"last\":\"https:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-weather-metric\",\"per_page\":20,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/automation-webhook-auth",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/automation-webhook-auth",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "qxaeymtguaxzyso",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "uxrpeeugjxmamsvw",
                                    "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": "xrljdvujhsbjd",
                                    "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-webhook-auth?page=1&perPage=20&sort=qxaeymtguaxzyso&sortBy=uxrpeeugjxmamsvw&sortOrder=desc&filter%5B%5D=&filter.search=xrljdvujhsbjd&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/automation-webhook-auth?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "puwbqtk",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nddldgauwdkb",
                                    "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": "jxcdgpxuwonwtiouufnkibu",
                                    "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\/collector?page=1&perPage=20&sort=puwbqtk&sortBy=nddldgauwdkb&sortOrder=desc&filter%5B%5D=&filter.search=jxcdgpxuwonwtiouufnkibu&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/collector?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "zucnvrrhqi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qqmuscg",
                                    "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": "nuvocgl",
                                    "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=zucnvrrhqi&sortBy=qqmuscg&sortOrder=desc&filter%5B%5D=&filter.search=nuvocgl&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/collector-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "bqjb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ayfglwwnngeixytlixs",
                                    "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": "dwizdmeyi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/company-contact?page=1&perPage=20&sort=bqjb&sortBy=ayfglwwnngeixytlixs&sortOrder=desc&filter%5B%5D=&filter.search=dwizdmeyi&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/company-contact?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "ftznqnfftofrgbmmmmmkljd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "wwooybctnmkqfvojgkqshpcq",
                                    "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": "cojnbqbbwk",
                                    "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\/company-link-invite-status?page=1&perPage=20&sort=ftznqnfftofrgbmmmmmkljd&sortBy=wwooybctnmkqfvojgkqshpcq&sortOrder=asc&filter%5B%5D=&filter.search=cojnbqbbwk&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/company-link-invite-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "gfcvvvonietytitd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "uhrdgbvvzm",
                                    "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": "tltbu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/company-link-status?page=1&perPage=20&sort=gfcvvvonietytitd&sortBy=uhrdgbvvzm&sortOrder=desc&filter%5B%5D=&filter.search=tltbu&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/company-link-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "skuj",
                                    "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": "txetosjbdwuxtggo",
                                    "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\/data-deletion-audit-status?page=1&perPage=20&sort=skuj&sortBy=b&sortOrder=desc&filter%5B%5D=&filter.search=txetosjbdwuxtggo&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/data-deletion-audit-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "cio",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xueudmtignknpqnymq",
                                    "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": "aljks",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data-retention-data?page=1&perPage=20&sort=cio&sortBy=xueudmtignknpqnymq&sortOrder=asc&filter%5B%5D=&filter.search=aljks&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/data-retention-data?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "wyesv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "udvhz",
                                    "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": "bytvxjzdfeebhvvdqtc",
                                    "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\/device-message-processing-status?page=1&perPage=20&sort=wyesv&sortBy=udvhz&sortOrder=desc&filter%5B%5D=&filter.search=bytvxjzdfeebhvvdqtc&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/device-message-processing-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "egbfag",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ppuhmamuilksyehuuqdbuujl",
                                    "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": "ghugbvawv",
                                    "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\/failure?page=1&perPage=20&sort=egbfag&sortBy=ppuhmamuilksyehuuqdbuujl&sortOrder=asc&filter%5B%5D=&filter.search=ghugbvawv&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/failure?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "kznkrqnbolmajzrwtf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qgkzcnvhfkdzrqkxdxqvboh",
                                    "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": "wixibpk",
                                    "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\/invitation-status?page=1&perPage=20&sort=kznkrqnbolmajzrwtf&sortBy=qgkzcnvhfkdzrqkxdxqvboh&sortOrder=asc&filter%5B%5D=&filter.search=wixibpk&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/invitation-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "fhbxaaurewutsfwg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "njvigbomdxlfgcx",
                                    "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": "aodipuxrmfokssg",
                                    "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\/ip?page=1&perPage=20&sort=fhbxaaurewutsfwg&sortBy=njvigbomdxlfgcx&sortOrder=desc&filter%5B%5D=&filter.search=aodipuxrmfokssg&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/ip?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "ibvwynxmezbwebzqkb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "dlivkmhkfbftvbaylcfq",
                                    "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": "dhzinxundb",
                                    "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=ibvwynxmezbwebzqkb&sortBy=dlivkmhkfbftvbaylcfq&sortOrder=desc&filter%5B%5D=&filter.search=dhzinxundb&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mime-type-list?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "rjnlsxwztljyd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "wktrzjgydhkmhseo",
                                    "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": "vhygungjms",
                                    "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-app-version?page=1&perPage=20&sort=rjnlsxwztljyd&sortBy=wktrzjgydhkmhseo&sortOrder=asc&filter%5B%5D=&filter.search=vhygungjms&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-app-version?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "qmdzffzadjdqcne",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "pgpglynovtvfpnnteqfmcnsyd",
                                    "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": "hcrjslhzqtbkif",
                                    "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=qmdzffzadjdqcne&sortBy=pgpglynovtvfpnnteqfmcnsyd&sortOrder=asc&filter%5B%5D=&filter.search=hcrjslhzqtbkif&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-action?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "lwxfg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xmeelwrngsqxzppgtxodzxex",
                                    "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": "k",
                                    "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=lwxfg&sortBy=xmeelwrngsqxzppgtxodzxex&sortOrder=desc&filter%5B%5D=&filter.search=k&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-connection?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "vqvoulqljuzmmxxavrgpbucmd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "kzmtdwercn",
                                    "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": "ahzzsxfwogpuushnjfvdyhm",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-audit-event?page=1&perPage=20&sort=vqvoulqljuzmmxxavrgpbucmd&sortBy=kzmtdwercn&sortOrder=asc&filter%5B%5D=&filter.search=ahzzsxfwogpuushnjfvdyhm&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-event?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "ynbfwaxcxlunx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "p",
                                    "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": "jpbcliibs",
                                    "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=ynbfwaxcxlunx&sortBy=p&sortOrder=asc&filter%5B%5D=&filter.search=jpbcliibs&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-audit-result-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "aoudankmfabzupgohbwwli",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "aaeyeemcrwwzpt",
                                    "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": "mpgozuylsrkvihdwqnj",
                                    "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=aoudankmfabzupgohbwwli&sortBy=aaeyeemcrwwzpt&sortOrder=desc&filter%5B%5D=&filter.search=mpgozuylsrkvihdwqnj&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-build-number?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "omriouwkfhtgbjgegxy",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "yatbfvccuiy",
                                    "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": "cfuz",
                                    "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=omriouwkfhtgbjgegxy&sortBy=yatbfvccuiy&sortOrder=desc&filter%5B%5D=&filter.search=cfuz&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-device-model?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "mjnnuwaxqmlrlpx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qqeolerwseliwkpoptlpdgcdk",
                                    "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": "tvb",
                                    "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-operator-label?page=1&perPage=20&sort=mjnnuwaxqmlrlpx&sortBy=qqeolerwseliwkpoptlpdgcdk&sortOrder=desc&filter%5B%5D=&filter.search=tvb&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-operator-label?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "gfmbwmgaohumxawnzj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xffenkgqpahgyrokwncsap",
                                    "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": "qfoyvxcpdmwwgfr",
                                    "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-os-version?page=1&perPage=20&sort=gfmbwmgaohumxawnzj&sortBy=xffenkgqpahgyrokwncsap&sortOrder=asc&filter%5B%5D=&filter.search=qfoyvxcpdmwwgfr&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-os-version?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "hbausajhaidkrwsgqhebbw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "s",
                                    "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": "hsyre",
                                    "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-platform?page=1&perPage=20&sort=hbausajhaidkrwsgqhebbw&sortBy=s&sortOrder=desc&filter%5B%5D=&filter.search=hsyre&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/mobile-platform?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "jffojb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ehemus",
                                    "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": "dfmebnqatjzebehjtqbxkgxio",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/note?page=1&perPage=20&sort=jffojb&sortBy=ehemus&sortOrder=asc&filter%5B%5D=&filter.search=dfmebnqatjzebehjtqbxkgxio&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/note?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "gqovhtmicuypxnunlbekuf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "axjnxiplqhbqpaxfizcigf",
                                    "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": "kmovtcngnpzfnqtunvrciyy",
                                    "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-channel?page=1&perPage=20&sort=gqovhtmicuypxnunlbekuf&sortBy=axjnxiplqhbqpaxfizcigf&sortOrder=desc&filter%5B%5D=&filter.search=kmovtcngnpzfnqtunvrciyy&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/notification-channel?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "uyltlwbpotmpzosx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ipalqylqvla",
                                    "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": "ehp",
                                    "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-delivery-status?page=1&perPage=20&sort=uyltlwbpotmpzosx&sortBy=ipalqylqvla&sortOrder=asc&filter%5B%5D=&filter.search=ehp&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/notification-delivery-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "umscvzqmatzdbedntwfoawx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "gjstezqco",
                                    "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": "nkeqxlfihqonfyv",
                                    "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-template-format?page=1&perPage=20&sort=umscvzqmatzdbedntwfoawx&sortBy=gjstezqco&sortOrder=asc&filter%5B%5D=&filter.search=nkeqxlfihqonfyv&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/notification-template-format?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "lpxmuwmyodxuuxmlm",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mwlzjyrfuujyjrnmpss",
                                    "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": "jqypgexbajfrro",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/permission?page=1&perPage=20&sort=lpxmuwmyodxuuxmlm&sortBy=mwlzjyrfuujyjrnmpss&sortOrder=desc&filter%5B%5D=&filter.search=jqypgexbajfrro&filter.active=1&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/rma-status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/type\/rma-status",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "20",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "ykwfkkscvzrwlimtfz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "stumlssusz",
                                    "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": "nmccvqj",
                                    "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\/rma-status?page=1&perPage=20&sort=ykwfkkscvzrwlimtfz&sortBy=stumlssusz&sortOrder=asc&filter%5B%5D=&filter.search=nmccvqj&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/rma-status?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "l",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "emghixwraujux",
                                    "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": "syohfamswphpxwvxgzivymbsu",
                                    "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=l&sortBy=emghixwraujux&sortOrder=desc&filter%5B%5D=&filter.search=syohfamswphpxwvxgzivymbsu&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": "kkemdiezxapfnpagu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "bbqqyiwkmwkastaxem",
                                    "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": "zojvikzvmjtlrcsydtf",
                                    "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\/user-address?page=1&perPage=20&sort=kkemdiezxapfnpagu&sortBy=bbqqyiwkmwkastaxem&sortOrder=asc&filter%5B%5D=&filter.search=zojvikzvmjtlrcsydtf&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/user-address?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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": "mqsdtl",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "fuafplvzjmjk",
                                    "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": "oonez",
                                    "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=mqsdtl&sortBy=fuafplvzjmjk&sortOrder=asc&filter%5B%5D=&filter.search=oonez&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:\\\/\\\/tracklabsolar.com\\\/api\\\/v1\\\/type\\\/warranty?page=1\",\"last\":\"https:\\\/\\\/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:\\\/\\\/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:\\\/\\\/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\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Handle an incoming password reset link request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/forgot-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/forgot-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"status\":\"We have emailed your password reset link.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"email\":[\"We can't find a user with that email address.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Handle an incoming new password request.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reset-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reset-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"...\",\"email\":\"user@example.com\",\"password\":\"NewSecurePass123!\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"status\":\"Your password has been reset.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\":\"The given data was invalid.\",\"errors\":{\"email\":[\"We can't find a user with that email address.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mark the user's email address as verified.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/verify-email\/:id\/:hash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/verify-email\/:id\/:hash",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "labore",
                                    "description": "The ID of the verify email."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "repellat",
                                    "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:\/\/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": "1"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6Im5HMDIxYmFMQ29hUE8vQTRkaVVDRWc9PSIsInZhbHVlIjoiaVl2cUcvbmtGM0ZnM1V1eVYyM3ZhckJlUytIRXVuVWIyZ1paQ2kyeU5ib3h0Z05SL3Zxd0RLajl6ZFZ2cDBJRVM4UkNXSzBJK0ttTm1oQ0lDa05lbHN0SFR2aFBSc2Q1L2pZRmZIUno3MEVxdlFTVlZhT1RXQmpEMDQwN216enEiLCJtYWMiOiJiOGQyN2VlOGVkMGUxYjZhMTJmN2IzODJkYWE5MDVjMjg3YjU2MTk4OTI4NjIwMzA3NDg4ZjE0NTZhNjkxNGNlIiwidGFnIjoiIn0%3D; expires=Sat, 15 Aug 2026 17:50:50 GMT; Max-Age=7200; path=\/; domain=tracklabsolar.com; secure; samesite=lax; tracklab_session=eyJpdiI6Ik0vQVBiQW9MS3Ztd0t0bksvY0VKK2c9PSIsInZhbHVlIjoiaFBVemFQYnhESmFIU29zRUpNRjBzblJhYUtQT2htSjFDRW5DNGtBTUxSZHdXbXpsUUFuamdwUEVQbVcwWU51bzRNWUIvcTFPN2FVQnRMcTJSbFhXb3FGWU5jNHVKQ2txcUtkbzNmd25QaXFSNGlxeEprSDIvZmU1VkloZlp4SU4iLCJtYWMiOiJjZDc4NTMxMjU4ZDRjNTk4NmQ0NjE2NDE4NTA3ZDQyYmNkMGNjMWU0YmYyMTJjYTUyNDU0N2VlNDdmYTNmNTZjIiwidGFnIjoiIn0%3D; expires=Sat, 15 Aug 2026 17:50:50 GMT; Max-Age=7200; path=\/; domain=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:\/\/tracklabsolar.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link'\" \/>\n\n        <title>Redirecting to https:\/\/tracklabsolar.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link<\/title>\n    <\/head>\n    <body>\n        Redirecting to <a href=\"https:\/\/tracklabsolar.com\/emailVerification?error=invalid&amp;msg=Invalid+verification+link\">https:\/\/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": "quae",
                                    "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": "assumenda",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Requires authentication. Adds the authenticated user to the company\nwith the pre-assigned role from the invitation."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":null,\"email\":null,\"status\":null,\"roleSlug\":null,\"invitedBy\":{\"uuid\":null,\"name\":null},\"validUntil\":\"2026-08-15T15:50:49+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-08-15T15:50:49+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. Must match an existing stored value.",
                                    "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. Must match an existing stored value.",
                                    "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. Must match an existing stored value.",
                                    "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. Must match an existing stored value.",
                                    "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 or attach a user for the specified company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/users",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"new.user@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove a user from a specific company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Data Retention",
            "description": "",
            "item": [
                {
                    "name": "List all data retention audit records.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/audits",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "completed",
                                    "description": "Filter by audit status (e.g., \"pending\", \"completed\", \"failed\").",
                                    "disabled": false
                                },
                                {
                                    "key": "dataType",
                                    "value": "device-messages",
                                    "description": "Filter by data type (e.g., \"device-messages\").",
                                    "disabled": false
                                },
                                {
                                    "key": "operation",
                                    "value": "delete",
                                    "description": "Filter by operation type (e.g., \"delete\", \"archive\").",
                                    "disabled": false
                                },
                                {
                                    "key": "startedAfter",
                                    "value": "2026-01-01",
                                    "description": "Filter audits started after this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "startedBefore",
                                    "value": "2026-12-31",
                                    "description": "Filter audits started before this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "started_at",
                                    "description": "Field to sort by (started_at, completed_at, created_at, data_type, operation, status, record_count).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/audits?page=1&perPage=25&status=completed&dataType=device-messages&operation=delete&startedAfter=2026-01-01&startedBefore=2026-12-31&sortBy=started_at&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a single data retention audit record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/audits\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/audits\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "cc58b8da-c994-4cf2-a6d7-e7267b267ca2",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List global default retention policies.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/defaults",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/defaults"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List effective retention policies for a company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create or update a company retention policy override.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"dataType\":\"measurement\",\"retentionDays\":365,\"archiveEnabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update a company retention policy override for a specific data type.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "dataRetentionDataType_slug",
                                    "key": "dataRetentionDataType_slug",
                                    "value": "collector-measurements",
                                    "description": "The slug of the dataRetentionDataType."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"retentionDays\":730,\"archiveEnabled\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a company retention policy override, reverting to global default.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "dataRetentionDataType_slug",
                                    "key": "dataRetentionDataType_slug",
                                    "value": "collector-measurements",
                                    "description": "The slug of the dataRetentionDataType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Impersonation",
            "description": "",
            "item": [
                {
                    "name": "Stop the current impersonation session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/stop",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/stop"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get current impersonation status.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Start an impersonation session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/start",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/start"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List active impersonation sessions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/sessions",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "impersonatorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by impersonator user UUID. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "targetUserUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by target user UUID. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "active",
                                    "value": "1",
                                    "description": "Filter by active sessions (default true).",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter sessions starting on\/after this date (ISO 8601). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter sessions starting on\/before this date (ISO 8601). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "startedAt",
                                    "description": "Sort field (startedAt, expiresAt, createdAt).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/sessions?page=1&perPage=25&impersonatorUuid=550e8400-e29b-41d4-a716-446655440000&targetUserUuid=550e8400-e29b-41d4-a716-446655440000&active=1&fromDate=2026-01-01&toDate=2026-12-31&sortBy=startedAt&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Terminate an impersonation session (admin override).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/sessions\/:session_uuid\/terminate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/sessions\/:session_uuid\/terminate",
                            "variable": [
                                {
                                    "id": "session_uuid",
                                    "key": "session_uuid",
                                    "value": "5aedae53-9cce-3cba-b01b-d2cb632ff43b",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - TrackLab Users",
            "description": "",
            "item": [
                {
                    "name": "Send a password reset email to a TrackLab user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/send-password-reset",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/send-password-reset",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Elevate a TrackLab user to super admin status.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/elevate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/elevate",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Revoke super admin status from a TrackLab user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/revoke",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/revoke",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Users",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/sa\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"search\":\"tim\",\"companySlug\":\"tracklab-solar\",\"role\":\"admin\",\"isActive\":true,\"page\":1,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null},{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/role",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/role",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/permissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/permissions",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"updated.user@example.com\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"countryIsoCode\":\"NL\",\"phoneNumber\":\"+31612345678\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Restore a globally soft-deleted user. SA-only.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/restore",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/restore",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/users\/{user_uuid}\/send-password-reset",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/send-password-reset",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/send-password-reset",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/users\/{user_uuid}\/send-email-verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/send-email-verification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/send-email-verification",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/users\/{user_uuid}\/profile\/picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/profile\/picture",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/profile\/picture",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"file\":\"odio\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/profile\/picture\/{format?}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/profile\/picture\/:format",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/profile\/picture\/:format",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "iure",
                                    "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": "quasi",
                                    "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. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440010",
                                    "description": "Filter audit events to a single collector UUID. Must be a valid UUID. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "userUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440011",
                                    "description": "Filter audit events to a single user UUID. Must be a valid UUID. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "eventName",
                                    "value": "mobile-ncu",
                                    "description": "Filter by mobile audit event type slug. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "actionName",
                                    "value": "command-send",
                                    "description": "Filter by mobile audit action type slug. Must match an existing stored value.",
                                    "disabled": false
                                },
                                {
                                    "key": "dateFrom",
                                    "value": "2026-03-01T00:00:00Z",
                                    "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:59:59Z",
                                    "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": "51aa63e5-3a6b-31d5-8986-21b8f6d9a6e7",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns full detail for a single mobile audit event including context, request, result, operator label, and device info."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin > Mobile Devices",
            "description": "",
            "item": [
                {
                    "name": "List mobile devices",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/devices",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/devices"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a paginated list of all mobile devices with optional filtering."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a mobile device",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/devices\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/devices\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "91a2dba3-a2bd-4b91-bbe9-fa27c2970489",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns detailed information for a single mobile device including masked push token and audit event count."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin > Routes",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/sa\/admin\/routes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/admin\/routes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/admin\/routes"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"all\":false}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "System",
            "description": "\nAPIs for system testing and health checks",
            "item": [
                {
                    "name": "Test System",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/test\/basic_system",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/test\/basic_system"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Check if the system is working properly. Tests DB + Redis connectivity.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"data\":{\"systemWorking\":true,\"services\":{\"database\":true,\"redis\":true},\"errors\":[]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Device messages pipeline health probe.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/health\/device-messages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/health\/device-messages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "12"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "10"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"ok\",\"oldestPendingSeconds\":38,\"pendingCount\":24,\"lastAlertSentAt\":null,\"degradedSince\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}