{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/tracklabsolar.com"
        }
    ],
    "info": {
        "name": "TrackLab",
        "_postman_id": "77b0f28d-28db-41ce-8606-afa6f0fb5e3a",
        "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": "d0787822-8503-3dbc-9179-5332361bdf33",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tokenUuid\":\"1c56326b-0d3e-3118-ad1c-0f5bccfab11c\"}"
                        },
                        "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": "atque",
                                    "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": "pariatur",
                                    "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": "aut",
                                    "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": "dolorum",
                                    "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": "a",
                                    "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": "explicabo",
                                    "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\":\"velit\"}"
                        },
                        "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": "pariatur",
                                    "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": "saepe",
                                    "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": "rem",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"admin@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"user\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"data\":{\"uuid\":\"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": "error",
                                    "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\":\"753ec412-a6d2-3608-a0e2-8dd90e309296\"}"
                        },
                        "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\":\"05b002b9-9ede-3366-9671-101ef9ea2d99\",\"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\":\"74c6b013-e093-3d7b-ab1a-9fb6811bf215\"}"
                        },
                        "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\":\"ab2777aa-e15d-35e2-9202-3fdf6d6c15e9\"}"
                        },
                        "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\":\"65ee5b68-5b60-336c-b7ae-3ca47de98372\"}"
                        },
                        "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": "ef98e290-528b-359d-9c40-9e5ed17c30ef",
                                    "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=eyJpdiI6InRFbXVHOVdHZDVjcW54UW02M0hIb3c9PSIsInZhbHVlIjoiUkJKOG92VHp4L3NiMUhBR0R1YVIwNTNYNlBXN0k5Uk5kUDV5MFZ3dk5PTkk1aGtyeEpPVE1ObzEzSlpWSjJsNEl3YUtmME1VUHpwMXVaQ3pYV0cwK3pZRTNiMFdLbzhGbDJ0MWU4YmJ3d0o2MmkrZmpHUEF6dEkvcllzSDBZeWIiLCJtYWMiOiI5OTE1M2FjYWQ1MTNhMjNjNjFjZDc0MDU4Yjk0MDljOWZkNzVlYmMxNTAwYTNiOTU1NjJiMzE5MTMwY2U2NzJmIiwidGFnIjoiIn0%3D; expires=Fri, 08 May 2026 11:50:17 GMT; Max-Age=7200; path=\/; domain=tracklabsolar.com; secure; samesite=lax; tracklab_session=eyJpdiI6Iml0R0dNNXJ2UlhNdEs4d2FXVTJOMkE9PSIsInZhbHVlIjoibFArMlRaU282MGNjMjB4T3hMUU1XNmNSOXVMaFdQOXc3eTZGZE1KTFFkcDdqZ0NWU0FqcHpKRkxxb2cwSG9xWmNuV2YxWlB4L2VIWHVUMXBWUmcrVERmVnJ1aXJkK2V5UVljN0p3cmlHOFpyaDRINzJvNGF0akdBM2pIUDBad3EiLCJtYWMiOiJlNGQ3YmM3ZjlmYTkxZTQ4MzBlMTM5ZGZkMWNmZjY3YjYwYWRlNGFlNWQ0MmNiNDcxZWU1OWFlY2YwZGIzMjljIiwidGFnIjoiIn0%3D; expires=Fri, 08 May 2026 11:50:17 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-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": "quia",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "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": "possimus",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440101\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440102\",\"status\":\"enabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Stows trackers when wind speed exceeds threshold.\",\"cooldownMinutes\":15,\"autoClear\":true,\"clearAfterSeconds\":300,\"evaluationPeriodSeconds\":60,\"evaluationCountThreshold\":3}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "cb254ece-088f-3791-8f7d-08fce4d62f6c",
                                    "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": "a122c8c9-29e9-351e-bfd5-0067040e00b0",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"disabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Updated description for wind stow rule.\",\"cooldownMinutes\":30,\"autoClear\":true,\"clearAfterSeconds\":600,\"evaluationPeriodSeconds\":120,\"evaluationCountThreshold\":2}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "8813faac-0d19-32e3-a642-0850a8bab603",
                                    "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": "c7bdc01c-e889-305c-9037-454a0b2af135",
                                    "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": "5b83687c-1744-3d34-a01a-f0e59445f93c",
                                    "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": "9beaa800-6242-34fc-8204-5d102d622eed",
                                    "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": "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 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": "perspiciatis",
                                    "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": "qui",
                                    "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": "ca818ee2-cff8-3a31-aa18-7b5244d4820d",
                                    "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": "ab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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": "optio",
                                    "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": "tempore",
                                    "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": "quia",
                                    "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": "et",
                                    "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": "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\":\"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": "46235f30-ec29-3539-a48d-0b6b42f7bc09",
                                    "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": "e8a84d2f-3a93-3048-8cc8-fd3245bc17d5",
                                    "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": "394a2ab4-4b69-3c6d-92a0-13b62c7cda05",
                                    "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": "5141e17d-72e0-3b08-b9a2-b6db81500a36",
                                    "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": "b62c6a9f-93b5-3c55-a01e-9c21feb8b011",
                                    "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": "103c1d67-648a-3050-abcc-5809f964b474",
                                    "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": "154dcd43-ec9a-3b7d-ad94-73f3e0c9abcf",
                                    "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": "5eaf2135-5743-30e3-89c0-28d59167596f",
                                    "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": "d8db5706-54ba-3b12-8895-048ba48cbd06",
                                    "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": "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\":\"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": "aut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "debitis",
                                    "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": "laudantium",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "aut",
                                    "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": "ea",
                                    "description": "The slug of the company"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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": "pariatur",
                                    "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": "ipsum",
                                    "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": "ab",
                                    "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": "autem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "debitis",
                                    "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": "eveniet",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "tempora",
                                    "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": "eum",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "ipsa",
                                    "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": "incidunt",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "nemo",
                                    "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": "placeat",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "molestiae",
                                    "description": "The UUID of the collector"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "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": "deserunt",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "rerum",
                                    "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": "autem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "eos",
                                    "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": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "architecto",
                                    "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": "unde",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "et",
                                    "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": "dolorem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "in",
                                    "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": "illo",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "ullam",
                                    "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": "vero",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "rerum",
                                    "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": "quidem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "quibusdam",
                                    "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": "natus",
                                    "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": "{\"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": "quia",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "qui",
                                    "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": "quia",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "cupiditate",
                                    "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": "rem",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "commodi",
                                    "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\":[\"owner\"],\"farms\":[{\"farmUuid\":\"45b2dd46-f2d8-36aa-bfee-4caea8ce596d\",\"roles\":[\"admin\"]}],\"collectors\":[{\"collectorUuid\":\"44118893-ad47-3d4d-8a2c-0c32115e4895\",\"roles\":[\"owner\"]}]},\"validUntil\":\"2026-12-31\"}"
                        },
                        "description": "Creates a new company link with an invite for the receiving company."
                    },
                    "response": []
                },
                {
                    "name": "Show Company Link",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/links\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/links\/:uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "03e12921-4829-34ac-a039-3c884ffb6ae4",
                                    "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": "f9a84e2e-da11-3315-898d-c7065707e836",
                                    "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": "c54df5fc-771a-30d3-a551-123a0c7b5fac",
                                    "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": "fb05267d-700d-38d8-9142-c869fe25e430",
                                    "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": "1448a9ca-74ca-3790-9b73-a8ca937582ac",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "eius",
                                    "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": "3d30cca4-11c7-36ab-b48b-69d5b74701a0",
                                    "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": "3399ef6e-99a7-3a53-8630-b276069f1c62",
                                    "description": ""
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "unde",
                                    "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": "62bbed53-1522-322f-b736-d366d69150d3",
                                    "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": "7ac2caca-5fee-340b-99b9-bc7eda1f3150",
                                    "description": ""
                                },
                                {
                                    "id": "collector_uuid",
                                    "key": "collector_uuid",
                                    "value": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "et",
                                    "description": "The ID of the role."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "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": "98de9df7-c6c8-3595-9394-cd4c43103baa",
                                    "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": "52f3b142-197f-34e2-bf74-26ad4bcbf08a",
                                    "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": "ipsum",
                                    "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": "nihil",
                                    "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\":[\"c2447de4-d88a-3274-86ba-759d583672c5\"],\"collectorUuids\":[\"0b71ddc0-ba9e-3db3-9a31-da5830440551\"],\"excludeCollectorUuids\":[\"57ae6582-2e4e-3572-9a6f-0218698be842\"]},\"collectorUuids\":[\"7d888927-0866-3ecb-92a2-9892d713afaf\"]}"
                        },
                        "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\":[\"9e7daf3a-4bb5-375b-a02b-155cde306bf0\"],\"collectorUuids\":[\"131517f9-30bb-320e-b2e7-d19127f863b5\"],\"excludeCollectorUuids\":[\"11197fa8-c944-3653-bc46-a1f1537b4590\"]},\"collectorUuids\":[\"a00cd25c-73b2-3204-a782-b7c08eecb587\"]}"
                        },
                        "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\":[\"f19a2696-ecc8-3318-bb54-ad57eb650cc3\"]}"
                        },
                        "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\":[\"isjuiqwj\"],\"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\":[\"xhvzrisxldczfemjlpidzmz\"],\"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": "tenetur",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all farms associated with the company."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false},{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add New Farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "sequi",
                                    "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": "quo",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "tenetur",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve details of a specific farm."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"c9b4c54e-a135-4a7f-86c9-7f03b9329a1b\",\"createdAt\":\"2024-01-03T20:11:13+00:00\",\"updatedAt\":\"2024-01-03T20:11:13+00:00\",\"enabled\":true,\"companySlug\":\"tracklab\",\"name\":\"First Farm\",\"description\":\"\",\"location\":{\"lat\":-25.91,\"lng\":28.12},\"isUnassigned\":false}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/farm\/:farm_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "ut",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "velit",
                                    "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-05-08T09:50:19+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-05-08T09:50:19+00:00\"},{\"uuid\":null,\"email\":null,\"status\":null,\"roleSlug\":null,\"invitedBy\":{\"uuid\":null,\"name\":null},\"validUntil\":\"2026-05-08T09:50:19+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-05-08T09:50:19+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": "155e1456-9edd-345e-9189-734f5feec63a",
                                    "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": "est",
                                    "description": "The slug of an existing record in the collector_measurement_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2024-01-01T00%3A00%3A00Z",
                                    "description": "datetime Start date for filtering (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "similique",
                                    "description": "The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "aa0a8ce4-766e-34a8-8808-4cbbf1b843e2",
                                    "description": "Filter by farm UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3f035fdf-1af3-3be4-b4f7-68c8e2a18b9f",
                                    "description": "Filter by farm section UUID",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "dolores",
                                    "description": "Filter by collector type (e.g., 'ncu', 'tcu')",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2024-01-31T23%3A59%3A59Z",
                                    "description": "datetime End date for filtering (ISO 8601).",
                                    "disabled": false
                                },
                                {
                                    "key": "raw",
                                    "value": "1",
                                    "description": "Return raw data without aggregation. Default: false",
                                    "disabled": false
                                },
                                {
                                    "key": "period",
                                    "value": "1-hour",
                                    "description": "Aggregation period slug (overrides auto-selection).",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "mollitia",
                                    "description": "Aggregation method slug from `measurement_aggregation_types` (see `\/api\/v1\/type\/data\/measurement-aggregation`). Default: avg",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "maxime",
                                    "description": "numeric Exclude values below threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMax",
                                    "value": "accusantium",
                                    "description": "numeric Exclude values above threshold",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "rerum",
                                    "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": "ut",
                                    "description": "Export format: json, csv, xml, excel. Default: json",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "15",
                                    "description": "Page number. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "16",
                                    "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": "vero",
                                    "description": "Filter by specific collector UUIDs",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/measurements?types[0]=est&from=2024-01-01T00%3A00%3A00Z&collectorUuids[0]=similique&farmUuid=aa0a8ce4-766e-34a8-8808-4cbbf1b843e2&farmSectionUuid=3f035fdf-1af3-3be4-b4f7-68c8e2a18b9f&collectorTypeSlug=dolores&to=2024-01-31T23%3A59%3A59Z&raw=1&period=1-hour&aggregation=mollitia&valueMin=maxime&valueMax=accusantium&groupBy=rerum&includeMetadata=&includeReplacements=&includeCount=1&exportType=ut&page=15&perPage=16&types[][0]=temperature&types[][1]=humidity&collectorUuids[][0]=vero",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "illo",
                                    "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": "mollitia",
                                    "description": "The slug of an existing record in the collector_measurement_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2025-01-01T00%3A00%3A00Z",
                                    "description": "Start timestamp (ISO 8601). Must be a valid date. Must be a date before now.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "qui",
                                    "description": "The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d",
                                    "description": "Filter by farm UUID. The uuid of an existing record in the farms table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa",
                                    "description": "Filter by farm section UUID. The uuid of an existing record in the farm_sections table.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. The slug of an existing record in the collector_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2025-01-02T00%3A00%3A00Z",
                                    "description": "End timestamp (ISO 8601). Must be a valid date. Must be a date after from.",
                                    "disabled": false
                                },
                                {
                                    "key": "raw",
                                    "value": "",
                                    "description": "When true, returns raw measurements without aggregation.",
                                    "disabled": true
                                },
                                {
                                    "key": "period",
                                    "value": "minute",
                                    "description": "Aggregation period type slug (when raw=false). The slug of an existing record in the period_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "avg",
                                    "description": "Aggregation method slug (enabled aggregation types only). The slug of an existing record in the measurement_aggregation_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "0",
                                    "description": "Minimum measurement value filter.",
                                    "disabled": true
                                },
                                {
                                    "key": "valueMax",
                                    "value": "1000",
                                    "description": "Maximum measurement value filter.",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "measurement_type",
                                    "description": "Group results by dimension.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeMetadata",
                                    "value": "1",
                                    "description": "Include measurement type \/ collector metadata.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeReplacements",
                                    "value": "",
                                    "description": "When querying by collector UUIDs, include collector history on the same tracker(s) across handovers.",
                                    "disabled": true
                                },
                                {
                                    "key": "includeCount",
                                    "value": "",
                                    "description": "Include total record count per group.",
                                    "disabled": true
                                },
                                {
                                    "key": "exportType",
                                    "value": "json",
                                    "description": "Optional export format.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination. Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "100",
                                    "description": "Items per page (max 10000). Must be at least 1. Must not be greater than 10000.",
                                    "disabled": false
                                },
                                {
                                    "key": "expiresInMinutes",
                                    "value": "10",
                                    "description": "Link expiry time in minutes (max 10). Must be at least 1. Must not be greater than 10.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/measurements\/download-link?types[0]=mollitia&from=2025-01-01T00%3A00%3A00Z&collectorUuids[0]=qui&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": "non",
                                    "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": "exercitationem",
                                    "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": "50e92c69-3a65-38c7-bf42-9080e6d4ec79",
                                    "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": "63004e68-0085-37a4-b0bb-4d61fc7f7ae3",
                                    "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": "89d78e5f-9719-3410-9af4-886e104c2d05",
                                    "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": "0841b636-a879-35bf-a17c-9d04cd8728f6",
                                    "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": "c6f009e8-c2a2-3cba-9251-a9ec35e47be7",
                                    "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": "57b5a468-af48-3b27-af3f-7257e67720a9",
                                    "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": "daf4f1dd-7dd5-3d78-acb5-688ef14832b4",
                                    "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": "61b15602-3f99-3051-a0f1-a094b5c6b849",
                                    "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": "5f0dbeee-cf25-315a-ba6a-866040e534fd",
                                    "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": "838403e0-eece-3519-9bdb-d131057fc107",
                                    "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": "854b5459-051e-30cd-913e-bb3463598077",
                                    "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": "3ea3c6af-5bc9-3f44-9127-f83a64e79c29",
                                    "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": "necessitatibus",
                                    "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": "illo",
                                    "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": "temporibus",
                                    "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": "ratione",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"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": "05ef37d0-8c0d-3234-8ca4-6b07770ac710",
                                    "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": "39fea5cf-ce1c-3581-b590-c3ff06b57e38",
                                    "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": "d7e8da8b-3be0-316f-b716-bc9d2e63e0ec",
                                    "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": "nihil",
                                    "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": "voluptatem",
                                    "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": "811b4b63-29fb-3f1f-bb37-fa34486cd5a3",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "sunt",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "temporibus",
                                    "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": "3de9d523-fb58-39b6-8d7a-86ef2f16b714",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "et",
                                    "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": "af812eea-131b-3700-84e2-b7a501cf1674",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "quod",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "nemo",
                                    "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": "8649df90-d947-3dea-8a92-bdddc5108b99",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "qui",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "dolores",
                                    "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": "f5468b5b-c06a-372a-a056-48f92efcc789",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "hic",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "pariatur",
                                    "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": "b8f10ead-ebcd-3e9e-a66b-04d88b00a46c",
                                    "description": ""
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "atque",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "rmaRequest",
                                    "key": "rmaRequest",
                                    "value": "quidem",
                                    "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\":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": "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": "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": "{\"deviceUuid\":\"550e8400-e29b-41d4-a716-446655440070\",\"events\":[{\"eventUuid\":\"550e8400-e29b-41d4-a716-446655440071\",\"occurredAt\":\"2026-02-17T10:00:00Z\",\"eventName\":\"collector_connection\",\"actionName\":\"connect\",\"operatorLabel\":\"operator-1\",\"connectionType\":\"bluetooth\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440072\",\"context\":{\"signalRssi\":-64},\"request\":{\"source\":\"mobile\"},\"result\":{\"status\":\"success\"},\"geo\":{\"lat\":33.4484,\"lng\":-112.074}}]}"
                        },
                        "description": "Upload a batch of mobile audit events for a company.\nDuplicate eventUuids are silently skipped (idempotent)."
                    },
                    "response": []
                },
                {
                    "name": "Upload NCU measurement and parameter data.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/ncu-data",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/ncu-data",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceUuid\":\"550e8400-e29b-41d4-a716-446655440080\",\"batchUuid\":\"550e8400-e29b-41d4-a716-446655440081\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440082\",\"measurements\":[{\"timestamp\":\"2026-02-17T10:05:00Z\",\"data\":{\"ambientTemp\":31.2}}],\"parameters\":{\"firmwareVersion\":\"1.18.4\",\"mode\":\"auto\"}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upload NCU raw log file.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/c\/:company_slug\/mobile\/ncu-logs",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/c\/:company_slug\/mobile\/ncu-logs",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "deviceUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440090",
                                    "type": "text",
                                    "description": "UUID of the mobile device uploading the log file. Must be a valid UUID."
                                },
                                {
                                    "key": "collectorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440091",
                                    "type": "text",
                                    "description": "UUID of the collector referenced by the log. Must be a valid UUID."
                                },
                                {
                                    "key": "notes",
                                    "value": "Captured right after an intermittent disconnect.",
                                    "type": "text",
                                    "description": "Optional operator notes for the uploaded logs. Must not be greater than 1000 characters."
                                },
                                {
                                    "key": "logFile",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List all enabled document library sections.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all enabled categories for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List all enabled documents for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Generate signed icon URLs for a section.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate signed icon URLs for a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate signed icon URLs for a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/documents\/:documentSectionDocument_uuid\/icon-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/documents\/:documentSectionDocument_uuid\/icon-link",
                            "variable": [
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Generate a signed download URL for a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/download-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/download-link",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"expiryMinutes\":10}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/email\/resend",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/resend",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/resend"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture\/:format",
                            "query": [
                                {
                                    "key": "token",
                                    "value": "54%7CVYSnJgtQsXZWN45UOPc3y16VArMBQ1KM1eMdIxLR417e6478",
                                    "description": "Optional Sanctum token for img src authentication.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/profile\/picture\/:format?token=54%7CVYSnJgtQsXZWN45UOPc3y16VArMBQ1KM1eMdIxLR417e6478",
                            "variable": [
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "square-48-webp",
                                    "description": "The image format\/conversion name."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve the authenticated user's profile picture. Supports token authentication\nvia query parameter for use in image tags where Bearer tokens cannot be sent."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The image file stream",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"Profile picture not found.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Current User",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves the complete profile information for the currently authenticated user.\nThis includes personal details, contact information, profile picture URLs, and\nassigned roles. The endpoint provides a comprehensive view of the user's account\ndata and preferences.\n\nThis endpoint is commonly used after login to initialize the user's session\nwith their full profile data, or to refresh the local cache of user information."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"john@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"phone_number\": \"+1234567890\",\n    \"created_at\": \"2024-01-20T12:00:00Z\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\",\n    \"profile_picture_url\": \"https:\/\/example.com\/profiles\/john.jpg\",\n    \"roles\": [\"user\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Check Authentication Status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/check"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Verifies if the current user has a valid authentication session. This endpoint\ncan be used by clients to validate their authentication state without making\na full profile request. It's particularly useful for SPA applications to check\nif their session is still valid.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"message\": \"Unauthenticated.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get User Companies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/company",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/company"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all companies associated with the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"slug\": \"example-company\",\n      \"createdAt\": \"2024-01-20T12:00:00Z\",\n      \"updatedAt\": \"2024-01-20T12:00:00Z\",\n      \"enabled\": true,\n      \"defaultCountryIsoCode\": \"ZA\",\n      \"country\": { \"isoCode\": \"ZA\", \"name\": \"South Africa\", \"emoji\": \"\ud83c\uddff\ud83c\udde6\" },\n      \"name\": \"Example Company\",\n      \"logoUrl\": null,\n      \"logoThumbUrl\": null,\n      \"logoLargeUrl\": null,\n      \"logoUrlExpiresAt\": null,\n      \"favicons\": null\n    }\n  ],\n  \"links\": {\n    \"first\": \"https:\/\/api.example.com\/api\/v1\/me\/companies?page=1\",\n    \"last\": \"https:\/\/api.example.com\/api\/v1\/me\/companies?page=1\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"total\": 1,\n    \"perPage\": 15,\n    \"currentPage\": 1,\n    \"lastPage\": 1,\n    \"from\": 1,\n    \"to\": 1,\n    \"hasMore\": false,\n    \"path\": \"https:\/\/api.example.com\/api\/v1\/me\/companies\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/me\/addresses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/addresses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/addresses"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/me\/addresses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/addresses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/addresses"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"addressString\":\"123 Main St, London SW1A 1AA\",\"addressLine1\":\"123 Main Street\",\"city\":\"London\",\"postCode\":\"SW1A 1AA\",\"countryIsoCode\":\"GB\",\"addressLine2\":\"Apt 4B\",\"neighborhood\":\"Westminster\",\"locality\":\"Central London\",\"place\":\"Piccadilly Circus\",\"district\":\"City of Westminster\",\"region\":\"Greater London\",\"location\":{\"lat\":51.5074,\"long\":-0.1278,\"latitude\":51.5074,\"longitude\":-0.1278}}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get User Roles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/role",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/role"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all roles assigned to the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"acme-co\": [\"admin\", \"user\"],\n    \"tracklab\": [\"tracklab-support\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get User Permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/permissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/permissions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all permissions assigned to the authenticated user, grouped by company slug."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"acme-co\": [\"collectors.view\", \"collectors.update\"],\n    \"tracklab\": [\"tracklab.users.view\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/me\/realtime\/bootstrap",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/realtime\/bootstrap",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/realtime\/bootstrap"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Profile Picture",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/profile\/picture"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Upload or update the user's profile picture."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"uuid\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"email\": \"john@example.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"profile_picture_url\": \"https:\/\/example.com\/profiles\/new-picture.jpg\",\n    \"updated_at\": \"2024-01-20T12:00:00Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"file\": [\n      \"The file must be an image.\",\n      \"The file failed to upload.\"\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Generate Signed Asset URLs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/assets\/signed-urls",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/assets\/signed-urls"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"assetType\":\"profile_picture\",\"expiryMinutes\":120}"
                        },
                        "description": "Generate time-limited signed URLs for protected assets. These URLs can be\nused in img tags without requiring bearer token authentication."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"assetType\": \"profile_picture\",\n    \"urls\": {\n      \"imgUrl\": \"https:\/\/example.com\/api\/v1\/me\/profile\/picture\/uuid\/square-256-webp?expires=...\",\n      \"imgThumbUrl\": \"https:\/\/example.com\/api\/v1\/me\/profile\/picture\/uuid\/square-48-webp?expires=...\"\n    },\n    \"expiresAt\": \"2024-01-20T13:00:00Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/me\/document",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/document",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/document"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"documentTypeSlug\":\"proof-of-address\",\"file\":\"consequatur\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/me\/document\/{format}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/document\/:format",
                            "query": [
                                {
                                    "key": "documentTypeSlug",
                                    "value": "proof-of-address",
                                    "description": "Slug of the document type to retrieve. The slug of an existing record in the document_types table.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/document\/:format?documentTypeSlug=proof-of-address",
                            "variable": [
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "sed",
                                    "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": "BD19BfdF-BDE2-56C7-Ed58-bCCD4CBB12Cc",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceModel\":\"Pixel 7 Pro\",\"osVersion\":\"14.0\",\"appVersion\":\"1.0.0\",\"buildNumber\":\"42\",\"pushToken\":\"fcm-token-here\"}"
                        },
                        "description": "Updates partial metadata on an existing mobile device (appVersion,\nbuildNumber, pushToken, etc.). The device must belong to the\nauthenticated user."
                    },
                    "response": []
                },
                {
                    "name": "Get Sync Status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/mobile\/sync-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/mobile\/sync-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns server time, feature flags, and limits for mobile clients\nto configure their sync behavior."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/automation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440101\",\"collectorUuid\":\"550e8400-e29b-41d4-a716-446655440102\",\"status\":\"enabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Stows trackers when wind speed exceeds threshold.\",\"cooldownMinutes\":15,\"autoClear\":true,\"clearAfterSeconds\":300,\"evaluationPeriodSeconds\":60,\"evaluationCountThreshold\":3}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "5f0e3f9b-2d95-3265-89fa-597f5d78149c",
                                    "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": "ce568b3e-c175-3e2a-ac47-bb57d3ee3086",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"disabled\",\"name\":\"High Wind Stow Rule\",\"description\":\"Updated description for wind stow rule.\",\"cooldownMinutes\":30,\"autoClear\":true,\"clearAfterSeconds\":600,\"evaluationPeriodSeconds\":120,\"evaluationCountThreshold\":2}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/c\/{company_slug}\/automation-rules\/{automationRule_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/automation-rules\/:automationRule_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "automationRule_uuid",
                                    "key": "automationRule_uuid",
                                    "value": "fdcfe30f-4253-351d-8320-3d2438595f1b",
                                    "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": "a7bfe25a-b41b-3f79-94f5-dd3d0ebd1d6b",
                                    "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": "41d4d1e3-5458-3834-a19c-796528588d75",
                                    "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": "6b297264-01bf-3ea8-a0c3-006abd36b9d7",
                                    "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": "31d5d13c-240b-3ff0-badb-9f6e9b863e34",
                                    "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": "abaaf705-b031-3e63-9f2b-554b6387b573",
                                    "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": "1067e350-59aa-3770-b54d-b9dc8198af46",
                                    "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": "130601f0-99a1-3d31-a47d-79a3c7113b2a",
                                    "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": "1234a523-0d4d-3af8-bad3-353464eef9d3",
                                    "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": "3fb9e70a-dcf1-338a-a680-6fa7956accb2",
                                    "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": "9b30c246-0aa2-3490-82e7-190b3bd0c0fd",
                                    "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": "131d7a0e-1c57-329d-8c26-ca48aae74c1a",
                                    "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": "b79ae375-72e7-3cfc-b95f-7f8804ef85af",
                                    "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": "7f6c4069-1541-3102-a5df-4017fe4d83fa",
                                    "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": "et",
                                    "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": "minima",
                                    "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": "porro",
                                    "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": "consequatur",
                                    "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": "quam",
                                    "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": "saepe",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}},{\"uuid\":\"a205ee53-a5ce-4ecf-8103-d1ace6488432\",\"collectorUuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorType\":\"TCU\",\"farmUuid\":null,\"farmSectionUuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"row\":0,\"column\":0,\"widthM\":\"5.00\",\"heightM\":\"2.00\",\"angleDeg\":\"0.00\",\"location\":null,\"locationJson\":null,\"metadata\":null,\"isCurrent\":false,\"activeFrom\":\"2026-01-14T20:08:43+00:00\",\"activeTo\":\"2026-03-10T09:42:17+00:00\",\"createdAt\":\"2026-01-14T20:08:43+00:00\",\"updatedAt\":\"2026-03-10T09:42:17+00:00\",\"collector\":{\"uuid\":\"a5ed3d06-9ac9-4eaf-8ea3-c7ec9dcafe54\",\"collectorTypeSlug\":\"tcu\",\"serial\":\"9\",\"name\":\"Auto-created TCU Collector 9\",\"enabled\":true},\"farmSection\":{\"uuid\":\"9d97ca6c-31f2-45e3-a586-2656291af1eb\",\"name\":\"Section1\",\"description\":\"\",\"enabled\":true,\"orderColumn\":0,\"location\":{\"lat\":-25.860111769169364,\"lng\":28.194855451583862},\"locationJson\":{\"latitude\":-25.860111769169364,\"longitude\":28.194855451583862},\"metadata\":null,\"createdAt\":\"2025-12-17T18:48:47+00:00\",\"updatedAt\":\"2026-02-08T10:22:07+00:00\",\"isUnassigned\":false}}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get tracker statistics for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/stats",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "est",
                                    "description": "The UUID of the farm"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"totalCurrent\": 150,\n  \"totalHistoric\": 45,\n  \"placed\": 120,\n  \"unplaced\": 30,\n  \"sectioned\": 100,\n  \"unsectioned\": 50,\n  \"placementPercentage\": 80.0\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get section statistics for a farm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/farms\/:farm_uuid\/trackers\/section-stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/farms\/:farm_uuid\/trackers\/section-stats",
                            "variable": [
                                {
                                    "id": "farm_uuid",
                                    "key": "farm_uuid",
                                    "value": "c9b4c54e-a135-4a7f-86c9-7f03b9329a1b",
                                    "description": ""
                                },
                                {
                                    "id": "farm",
                                    "key": "farm",
                                    "value": "illum",
                                    "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": "explicabo",
                                    "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": "facilis",
                                    "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": "et",
                                    "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": "voluptatibus",
                                    "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": "dolorem",
                                    "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": "impedit",
                                    "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\":\"8378ef0b-bff9-3fd0-abdb-5f5b7913794e\"}"
                        },
                        "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": "sint",
                                    "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": "distinctio",
                                    "description": "The UUID of the tracker"
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "{}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Tracker not found\"\n}",
                            "name": "Not Found"
                        }
                    ]
                },
                {
                    "name": "Copy collector locations to trackers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/trackers\/copy-locations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/trackers\/copy-locations"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tracker_uuids\":[\"550e8400-e29b-41d4-a716-446655440001\"]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Copied locations for 10 trackers\",\n  \"count\": 10\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/data-unit-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "celsius",
                                    "description": "Search by name, slug, or description. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "dataTypeSlug",
                                    "value": "numeric",
                                    "description": "Filter by data type slug. The slug of an existing record in the data_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types?enabled=1&search=celsius&dataTypeSlug=numeric&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/data-unit-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"celsius\",\"name\":\"Celsius\",\"unit\":\"\u00b0C\",\"description\":\"Temperature in degrees Celsius\",\"dataTypeSlug\":\"numeric\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/data-unit-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/data-unit-types\/{dataUnit_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "variable": [
                                {
                                    "id": "dataUnit_slug",
                                    "key": "dataUnit_slug",
                                    "value": "unknown",
                                    "description": "The slug of the dataUnit."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/data-unit-types\/{dataUnit_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "variable": [
                                {
                                    "id": "dataUnit_slug",
                                    "key": "dataUnit_slug",
                                    "value": "unknown",
                                    "description": "The slug of the dataUnit."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"celsius-updated\",\"name\":\"Celsius Updated\",\"unit\":\"\u00b0C\",\"description\":\"Updated temperature description\",\"dataTypeSlug\":\"numeric\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/data-unit-types\/{dataUnit_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-unit-types\/:dataUnit_slug",
                            "variable": [
                                {
                                    "id": "dataUnit_slug",
                                    "key": "dataUnit_slug",
                                    "value": "unknown",
                                    "description": "The slug of the dataUnit."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-measurement-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types?enabled=1&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collector-measurement-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"temperature\",\"name\":\"Temperature\",\"description\":\"Ambient temperature measurement\",\"dataUnitSlug\":\"celsius\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-measurement-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/collector-measurement-types\/{collectorMeasurementType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "variable": [
                                {
                                    "id": "collectorMeasurementType_slug",
                                    "key": "collectorMeasurementType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorMeasurementType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collector-measurement-types\/{collectorMeasurementType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "variable": [
                                {
                                    "id": "collectorMeasurementType_slug",
                                    "key": "collectorMeasurementType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorMeasurementType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"temperature-updated\",\"name\":\"Temperature Updated\",\"description\":\"Updated ambient temperature measurement\",\"dataUnitSlug\":\"celsius\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collector-measurement-types\/{collectorMeasurementType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-measurement-types\/:collectorMeasurementType_slug",
                            "variable": [
                                {
                                    "id": "collectorMeasurementType_slug",
                                    "key": "collectorMeasurementType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorMeasurementType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types?enabled=1&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collector-parameter-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"tracking-mode\",\"name\":\"Tracking Mode\",\"description\":\"Collector tracking mode configuration\",\"dataUnitSlug\":\"string\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true,\"isReadOnly\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-types\/export",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-types\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collector-parameter-types\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"tracking-mode-updated\",\"name\":\"Tracking Mode Updated\",\"description\":\"Updated collector tracking mode configuration\",\"dataUnitSlug\":\"string\",\"collectorTypeSlug\":\"tcu\",\"orderColumn\":1,\"enabled\":true,\"isReadOnly\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collector-parameter-types\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-types\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-validation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "collectorParameterTypeSlug",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules?enabled=1&orderBy=collectorParameterTypeSlug&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/collector-parameter-validation-rules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorParameterTypeSlug\":\"tracking-mode\",\"minValueDecimal\":0,\"maxValueDecimal\":100,\"stringRegex\":\"^[a-zA-Z]+$\",\"defaultValue\":\"auto\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/collector-parameter-validation-rules\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/collector-parameter-validation-rules\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"collectorParameterTypeSlug\":\"tracking-mode\",\"minValueDecimal\":0,\"maxValueDecimal\":100,\"stringRegex\":\"^[a-zA-Z]+$\",\"defaultValue\":\"manual\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/sa\/collector-parameter-validation-rules\/{collectorParameterType_slug}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/:collectorParameterType_slug",
                            "variable": [
                                {
                                    "id": "collectorParameterType_slug",
                                    "key": "collectorParameterType_slug",
                                    "value": "unknown",
                                    "description": "The slug of the collectorParameterType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/collector-parameter-validation-rules\/validate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/collector-parameter-validation-rules\/validate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/collector-parameter-validation-rules\/validate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/device-model-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types",
                            "query": [
                                {
                                    "key": "enabled",
                                    "value": "1",
                                    "description": "Filter by enabled status.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. The slug of an existing record in the collector_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "orderBy",
                                    "value": "orderColumn",
                                    "description": "Sort field.",
                                    "disabled": false
                                },
                                {
                                    "key": "direction",
                                    "value": "asc",
                                    "description": "Sort direction.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "Items per page (max 200). Must be at least 1. Must not be greater than 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types?enabled=1&collectorTypeSlug=ncu&orderBy=orderColumn&direction=asc&perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/device-model-types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/device-model-types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/device-model-types"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slug\":\"ncu-v3\",\"name\":\"NCU Version 3\",\"description\":\"Network Control Unit version 3 with advanced features\",\"manufacturerTypeSlug\":\"tracklab\",\"collectorTypeSlug\":\"ncu\",\"capabilities\":{\"wifi\":\"true\",\"channels\":\"8\"},\"orderColumn\":1,\"enabled\":true,\"hardwareVersionSlugs\":[{\"slug\":\"provident\",\"isPrimary\":false,\"notes\":\"molestiae\"}]}"
                        },
                        "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\":\"laboriosam\",\"isPrimary\":false,\"notes\":\"molestiae\"}]}"
                        },
                        "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": "laudantium",
                                    "description": "The slug of the company"
                                },
                                {
                                    "id": "collector",
                                    "key": "collector",
                                    "value": "voluptas",
                                    "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\":[\"dcec30c7-8d73-3d99-a029-b2ae08780a44\"],\"collectorUuids\":[\"225221cc-7511-368c-b296-d9775e0c0b5c\"],\"excludeCollectorUuids\":[\"937617a4-95c6-3880-9ac6-edc8a2855b22\"]},\"collectorUuids\":[\"f1760711-c0dd-3e7e-a780-c3578898897f\"]}"
                        },
                        "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\":[\"106f6985-8ff2-3137-b31d-0cb0891c6aef\"],\"collectorUuids\":[\"5580aff7-fb9b-344e-91dd-a5d7a89f1104\"],\"excludeCollectorUuids\":[\"e70c35bc-db9a-3be3-a6f4-9db354be6b82\"]},\"collectorUuids\":[\"cb0b6228-f390-392a-9481-d7abc454a488\"]}"
                        },
                        "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\":[\"685213e7-9c50-3c9e-baf0-b39cfd2ceced\"],\"collectorUuids\":[\"b56b6911-e5d1-39e9-8a50-999af4d28c48\"],\"excludeCollectorUuids\":[\"b5330baf-f3a2-3a21-87cc-4fc1f3fea45a\"]},\"collectorUuids\":[\"8ec54e3c-37ef-3a1a-94ae-a65615b25abd\"]}"
                        },
                        "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\":[\"f2d84ea3-d8cd-3bde-b219-1e139e6e2c97\"]}"
                        },
                        "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\":[\"enim\"]}"
                        },
                        "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\":\"commodi\"}"
                        },
                        "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\":[\"72daf038-8ba1-3a54-bc0b-c909e90b5d50\"]}"
                        },
                        "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\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "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\":\"odio\"}"
                        },
                        "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\":[\"f74e891b-ab2c-30a8-b087-5066f0d8acc8\"]}"
                        },
                        "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\":\"ex\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove the icon from a document record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/icon",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update document metadata.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"NCU Installation Manual v2.1\",\"description\":\"Complete installation and commissioning guide for NCU v2 units.\",\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Move a document to a different category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/move",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/doc-lib\/sections\/:section_uuid\/categories\/:category_uuid\/documents\/:documentSectionDocument_uuid\/move",
                            "variable": [
                                {
                                    "id": "section_uuid",
                                    "key": "section_uuid",
                                    "value": "6218f665-ccd0-417e-917a-faecaa225bc3",
                                    "description": ""
                                },
                                {
                                    "id": "category_uuid",
                                    "key": "category_uuid",
                                    "value": "6d8ce9e4-ee38-432f-b75b-6834ef1d21bd",
                                    "description": ""
                                },
                                {
                                    "id": "documentSectionDocument_uuid",
                                    "key": "documentSectionDocument_uuid",
                                    "value": "ccee35e3-6359-4d97-80cc-bca275fc26cf",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"categoryUuid\":\"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/companies\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/companies\/{company_slug}\/firmware-keys",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Production Farm Key\",\"description\":\"Key for firmware updates on production farm\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440000\",\"expiresAt\":\"2025-12-31\",\"isActive\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Updated Farm Key\",\"description\":\"Updated key description\",\"expiresAt\":\"2026-06-30\",\"isActive\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/sa\/companies\/{company_slug}\/firmware-keys\/{firmwareAccessKey_uuid}\/deactivate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/companies\/:company_slug\/firmware-keys\/:firmwareAccessKey_uuid\/deactivate",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "firmwareAccessKey_uuid",
                                    "key": "firmwareAccessKey_uuid",
                                    "value": "f2c02d5b-8653-47d4-b315-5d073c2da271",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List available firmware versions (global scope)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"deviceModelTypeSlug\":\"ncu-v2\",\"enabled\":true,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload new firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "version",
                                    "value": "v1.2.3",
                                    "type": "text",
                                    "description": "Semantic version of the firmware. Must match the regex \/^v?\\d+\\.\\d+\\.\\d+(?:-[0-9A-Za-z.-]+)?(?:\\+[0-9A-Za-z.-]+)?$\/. Must not be greater than 50 characters."
                                },
                                {
                                    "key": "deviceModelTypeSlug",
                                    "value": "ncu-v2",
                                    "type": "text",
                                    "description": "Slug of the target device model type. The <code>slug<\/code> of an existing record in the device_model_types table."
                                },
                                {
                                    "key": "name",
                                    "value": "NCU Firmware v1.2.3",
                                    "type": "text",
                                    "description": "Display name for the firmware. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "description",
                                    "value": "Bug fixes and performance improvements",
                                    "type": "text",
                                    "description": "Description of the firmware release. Must not be greater than 1000 characters."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show firmware details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update firmware metadata",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tokenRequired\":true,\"name\":\"NCU Controller Firmware\",\"description\":\"Firmware package for NCU controller devices\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Enable\/disable firmware",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:firmware_slug\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:firmware_slug\/toggle",
                            "variable": [
                                {
                                    "id": "firmware_slug",
                                    "key": "firmware_slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"enabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete firmware (soft delete)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/firmware\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/firmware\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "nknown",
                                    "description": "The slug of the firmware."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/sa\/c\/{company_slug}\/notification-channels",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"companySlug\":\"acme-solar\",\"farmUuid\":\"550e8400-e29b-41d4-a716-446655440111\",\"notificationChannelType\":\"email\",\"name\":\"Ops Email Alerts\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/sa\/c\/{company_slug}\/notification-channels\/{notificationChannel_uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/notification-channels\/:notificationChannel_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "notificationChannel_uuid",
                                    "key": "notificationChannel_uuid",
                                    "value": "f8c50090-a6e3-3e5a-ad39-348a32af8a19",
                                    "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": "d457c658-c849-3504-a074-48beace08e26",
                                    "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": "cb956839-4413-3e67-8125-fbd1fc2e45dc",
                                    "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": "3d513849-b389-32c7-848c-3f907112f8d6",
                                    "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": "f0b621a6-5236-336a-aa73-54c85812e108",
                                    "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": "fe90482d-bb06-322e-925e-e145244ba645",
                                    "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": "69cee706-31f7-3a6b-94f7-243b5b7f1da3",
                                    "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": "b577b941-6e0f-3205-a81d-26be4b7ba4be",
                                    "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": "896b7f1c-9512-39da-bea4-582c660e0f2f",
                                    "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": "10db8777-8747-33e1-a243-ad301b8a531c",
                                    "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": "47c40ca2-5960-31df-b618-2864c2760af4",
                                    "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": "0c4aaa53-5dbf-35e9-ad93-89494db1dca6",
                                    "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": "b9f3f9c4-a3fd-3a27-9953-5a206b8af9e3",
                                    "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": "f0e2f7c0-37b7-38de-8901-a19806eab95a",
                                    "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": "aa520358-84c6-329c-8dba-eb5e44e3b15f",
                                    "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": "0cff0a0e-05f5-349f-8fae-cedd88597e11",
                                    "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": "80b3f8ea-b939-3cea-aca6-9bd9eb22842a",
                                    "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": "e08bc159-b5da-3716-8f4f-ddb5da09b9e7",
                                    "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": "cd8471cc-f17d-3d52-9329-66b3af57495e",
                                    "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": "7ab70613-2c0e-31c1-88f1-441d473c86fc",
                                    "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": "2528dad3-0e61-360a-9266-9a285279a889",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"b\"}"
                        },
                        "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": "395807b8-3a57-312f-8ce1-b002f20282fc",
                                    "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": "73623026-7555-3ca8-ba8a-4ee493f04903",
                                    "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\":\"21c0f6f8-3db0-3c21-ba6e-660ca760546c\"}"
                        },
                        "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\":1778233821,\"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": "sapiente",
                                    "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": "expedita",
                                    "description": "The slug of an existing record in the collector_measurement_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "from",
                                    "value": "2025-01-01T00%3A00%3A00Z",
                                    "description": "Start timestamp (ISO 8601). Must be a valid date. Must be a date before now.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuids[0]",
                                    "value": "doloremque",
                                    "description": "The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmUuid",
                                    "value": "d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d",
                                    "description": "Filter by farm UUID. The uuid of an existing record in the farms table.",
                                    "disabled": false
                                },
                                {
                                    "key": "farmSectionUuid",
                                    "value": "3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa",
                                    "description": "Filter by farm section UUID. The uuid of an existing record in the farm_sections table.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorTypeSlug",
                                    "value": "ncu",
                                    "description": "Filter by collector type slug. The slug of an existing record in the collector_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "to",
                                    "value": "2025-01-02T00%3A00%3A00Z",
                                    "description": "End timestamp (ISO 8601). Must be a valid date. Must be a date after from.",
                                    "disabled": false
                                },
                                {
                                    "key": "raw",
                                    "value": "",
                                    "description": "When true, returns raw measurements without aggregation.",
                                    "disabled": true
                                },
                                {
                                    "key": "period",
                                    "value": "minute",
                                    "description": "Aggregation period type slug (when raw=false). The slug of an existing record in the period_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "aggregation",
                                    "value": "avg",
                                    "description": "Aggregation method slug (enabled aggregation types only). The slug of an existing record in the measurement_aggregation_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "valueMin",
                                    "value": "0",
                                    "description": "Minimum measurement value filter.",
                                    "disabled": true
                                },
                                {
                                    "key": "valueMax",
                                    "value": "1000",
                                    "description": "Maximum measurement value filter.",
                                    "disabled": false
                                },
                                {
                                    "key": "groupBy",
                                    "value": "measurement_type",
                                    "description": "Group results by dimension.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeMetadata",
                                    "value": "1",
                                    "description": "Include measurement type \/ collector metadata.",
                                    "disabled": false
                                },
                                {
                                    "key": "includeReplacements",
                                    "value": "",
                                    "description": "When querying by collector UUIDs, include collector history on the same tracker(s) across handovers.",
                                    "disabled": true
                                },
                                {
                                    "key": "includeCount",
                                    "value": "",
                                    "description": "Include total record count per group.",
                                    "disabled": true
                                },
                                {
                                    "key": "exportType",
                                    "value": "json",
                                    "description": "Optional export format.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination. Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "100",
                                    "description": "Items per page (max 10000). Must be at least 1. Must not be greater than 10000.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/open\/c\/:company_slug\/measurements?types[0]=expedita&from=2025-01-01T00%3A00%3A00Z&collectorUuids[0]=doloremque&farmUuid=d5b1b4e7-2d71-4c16-9c0c-fc0c2b9f3d0d&farmSectionUuid=3b3fb893-1e88-4c3c-8b10-0a5c2b3cf6aa&collectorTypeSlug=ncu&to=2025-01-02T00%3A00%3A00Z&raw=&period=minute&aggregation=avg&valueMin=0&valueMax=1000&groupBy=measurement_type&includeMetadata=1&includeReplacements=&includeCount=&exportType=json&page=1&perPage=100",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid signature.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Profile Picture (Signed URL)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me\/profile\/picture\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me\/profile\/picture\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "eyJpdiI6...",
                                    "description": "The encrypted signed token."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "square-48-webp",
                                    "description": "The image format\/conversion name."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a user's profile picture using a signed URL token.\nThe token contains encrypted user UUID and expiry timestamp.\n\nURL format: \/me\/profile\/picture\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The image file stream",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"message\": \"Invalid or expired token.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"User not found.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/email\/verify\/{id}\/{hash}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/verify\/:id\/:hash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/verify\/:id\/:hash",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "repudiandae",
                                    "description": "The ID of the verify."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "qui",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "6"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "5"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 403,
                            "body": "{\"success\":false,\"message\":\"Invalid verification link\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Serve a section icon via signed token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/doc-lib\/sections\/:sectionUuid\/icon\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/doc-lib\/sections\/:sectionUuid\/icon\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "sectionUuid",
                                    "key": "sectionUuid",
                                    "value": "66b6d035-6d63-3479-9be1-372384eb71e0",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "sed",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "est",
                                    "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": "d87016c0-0b7f-36e5-bb53-08fec8abd10e",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "aut",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "voluptatem",
                                    "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": "eddabe13-659e-31da-ab5e-3b61a51414ca",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "voluptas",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "iusto",
                                    "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": "6fd85eb2-d1a5-3c46-96de-cef4ab445e8c",
                                    "description": ""
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "rerum",
                                    "description": ""
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "impedit",
                                    "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": "tempora",
                                    "description": ""
                                },
                                {
                                    "id": "automationInboundWebhookSource_uuid",
                                    "key": "automationInboundWebhookSource_uuid",
                                    "value": "a0c700b9-855e-3f6c-94c3-8dc643febc8e",
                                    "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": "rerum",
                                    "description": ""
                                },
                                {
                                    "id": "automationTestWebhookEndpoint_uuid",
                                    "key": "automationTestWebhookEndpoint_uuid",
                                    "value": "cf85d989-381b-3b96-ab8c-421620955852",
                                    "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": "us",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "tcfk",
                                    "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": "wgunjrtmpqkfzxmi",
                                    "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-failure-mode?page=1&perPage=20&sort=us&sortBy=tcfk&sortOrder=desc&filter[]=&filter.search=wgunjrtmpqkfzxmi&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-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": "fqpdopeywfvcwhqbjsraez",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "frhfljraunpykde",
                                    "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": "tcjgahdgn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-action-target?page=1&perPage=20&sort=fqpdopeywfvcwhqbjsraez&sortBy=frhfljraunpykde&sortOrder=desc&filter[]=&filter.search=tcjgahdgn&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-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": "cr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "wsqzxrcngiuw",
                                    "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": "nu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-action?page=1&perPage=20&sort=cr&sortBy=wsqzxrcngiuw&sortOrder=asc&filter[]=&filter.search=nu&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-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": "ldyfoafiexejftylqv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "wddgupmh",
                                    "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": "twvmhwailhszcfptipkyanoye",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-condition-group-operator?page=1&perPage=20&sort=ldyfoafiexejftylqv&sortBy=wddgupmh&sortOrder=desc&filter[]=&filter.search=twvmhwailhszcfptipkyanoye&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-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": "ullrpdlxvtchqafpgvrfap",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "gkbjesmytrmp",
                                    "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": "ajjkdvolshrrutgch",
                                    "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=ullrpdlxvtchqafpgvrfap&sortBy=gkbjesmytrmp&sortOrder=asc&filter[]=&filter.search=ajjkdvolshrrutgch&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": "vbbmspqf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "lvgdxcqbblnwyncvzevpqu",
                                    "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": "sajytnkakltcokxyoxs",
                                    "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-event-source?page=1&perPage=20&sort=vbbmspqf&sortBy=lvgdxcqbblnwyncvzevpqu&sortOrder=desc&filter[]=&filter.search=sajytnkakltcokxyoxs&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-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": "jwjjpspieqorcpxtvgkitr",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "zr",
                                    "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": "lirveawkiqtezofdad",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-event-status?page=1&perPage=20&sort=jwjjpspieqorcpxtvgkitr&sortBy=zr&sortOrder=desc&filter[]=&filter.search=lirveawkiqtezofdad&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-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": "p",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "mrvacicbokwzzseptnslmpfoq",
                                    "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": "m",
                                    "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-execution-status?page=1&perPage=20&sort=p&sortBy=mrvacicbokwzzseptnslmpfoq&sortOrder=desc&filter[]=&filter.search=m&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-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": "hflozhjbltgpd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qunekmjcckh",
                                    "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": "smjaelu",
                                    "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-match-status?page=1&perPage=20&sort=hflozhjbltgpd&sortBy=qunekmjcckh&sortOrder=asc&filter[]=&filter.search=smjaelu&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-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": "afqlplbuvozmkkhnkb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "gfamuldsqnhmuhplozsjlsmk",
                                    "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": "gezlidbnncledwvrkgesckzts",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-rule-status?page=1&perPage=20&sort=afqlplbuvozmkkhnkb&sortBy=gfamuldsqnhmuhplozsjlsmk&sortOrder=desc&filter[]=&filter.search=gezlidbnncledwvrkgesckzts&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-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": "ewt",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ia",
                                    "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": "gakaydllvq",
                                    "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-trigger-subject?page=1&perPage=20&sort=ewt&sortBy=ia&sortOrder=desc&filter[]=&filter.search=gakaydllvq&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-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": "ykfiqchkpydwnrwcojfz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ynssqqsepicwaovrfgalmqod",
                                    "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": "ndytczyoxsppspixvrqqnqg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/automation-weather-metric?page=1&perPage=20&sort=ykfiqchkpydwnrwcojfz&sortBy=ynssqqsepicwaovrfgalmqod&sortOrder=desc&filter[]=&filter.search=ndytczyoxsppspixvrqqnqg&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-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": "cj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "oxkbzjnmv",
                                    "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": "lcmsshycuoadq",
                                    "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-webhook-auth?page=1&perPage=20&sort=cj&sortBy=oxkbzjnmv&sortOrder=asc&filter[]=&filter.search=lcmsshycuoadq&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-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": "be",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xxvnlkdkmlaarexqud",
                                    "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": "jhr",
                                    "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=be&sortBy=xxvnlkdkmlaarexqud&sortOrder=asc&filter[]=&filter.search=jhr&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": "hpcousov",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "rxf",
                                    "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": "gvrhvvsyocto",
                                    "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=hpcousov&sortBy=rxf&sortOrder=desc&filter[]=&filter.search=gvrhvvsyocto&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": "guqiuvcgzhpivujtixz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "osmvzttex",
                                    "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": "bbvvqjfti",
                                    "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=guqiuvcgzhpivujtixz&sortBy=osmvzttex&sortOrder=desc&filter[]=&filter.search=bbvvqjfti&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": "bp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "v",
                                    "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": "du",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/company-link-invite-status?page=1&perPage=20&sort=bp&sortBy=v&sortOrder=desc&filter[]=&filter.search=du&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-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": "pruvgwt",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "tvcxk",
                                    "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": "gzmoxsfdosidiby",
                                    "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=pruvgwt&sortBy=tvcxk&sortOrder=asc&filter[]=&filter.search=gzmoxsfdosidiby&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": "ecs",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "lmpexsaghtvxva",
                                    "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": "ld",
                                    "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=ecs&sortBy=lmpexsaghtvxva&sortOrder=desc&filter[]=&filter.search=ld&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": "bxdrdfudrlvqkbx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "uhqpsaewgmrzutreunzg",
                                    "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": "jqzzedbivrwqvdsw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/data-retention-data?page=1&perPage=20&sort=bxdrdfudrlvqkbx&sortBy=uhqpsaewgmrzutreunzg&sortOrder=asc&filter[]=&filter.search=jqzzedbivrwqvdsw&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\\\/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": "xd",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "hbucgmkcxjcaejwvk",
                                    "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": "vdshwadmtrhnnsmaklhfl",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/device-message-processing-status?page=1&perPage=20&sort=xd&sortBy=hbucgmkcxjcaejwvk&sortOrder=desc&filter[]=&filter.search=vdshwadmtrhnnsmaklhfl&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\\\/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": "kefstp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "grdnwuulwshl",
                                    "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": "mpwvrehjic",
                                    "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\/failure?page=1&perPage=20&sort=kefstp&sortBy=grdnwuulwshl&sortOrder=asc&filter[]=&filter.search=mpwvrehjic&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\\\/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": "moejdvqabviddtgnsmflrwyu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ciiytksrhiurw",
                                    "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": "kox",
                                    "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\/invitation-status?page=1&perPage=20&sort=moejdvqabviddtgnsmflrwyu&sortBy=ciiytksrhiurw&sortOrder=desc&filter[]=&filter.search=kox&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\\\/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": "zwanpfvj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qqzbe",
                                    "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": "ubgp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/ip?page=1&perPage=20&sort=zwanpfvj&sortBy=qqzbe&sortOrder=desc&filter[]=&filter.search=ubgp&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\\\/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": "jkrqmbyidce",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ywkcer",
                                    "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": "uxupmzmymvzjbsbshlpwvs",
                                    "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=jkrqmbyidce&sortBy=ywkcer&sortOrder=desc&filter[]=&filter.search=uxupmzmymvzjbsbshlpwvs&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": "peu",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "oqfzbjznqljdzgtewpnpgwn",
                                    "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": "ykkkmzezx",
                                    "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=peu&sortBy=oqfzbjznqljdzgtewpnpgwn&sortOrder=desc&filter[]=&filter.search=ykkkmzezx&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": "mwbopkjlkzifspqubldkqpb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "n",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter[]",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                },
                                {
                                    "key": "filter.search",
                                    "value": "mzaaannfzkp",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-audit-action?page=1&perPage=20&sort=mwbopkjlkzifspqubldkqpb&sortBy=n&sortOrder=desc&filter[]=&filter.search=mzaaannfzkp&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-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": "jdzhvuilwoqxb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ieaimqkreksfragi",
                                    "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": "ajkzvnjqltwptkre",
                                    "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-connection?page=1&perPage=20&sort=jdzhvuilwoqxb&sortBy=ieaimqkreksfragi&sortOrder=asc&filter[]=&filter.search=ajkzvnjqltwptkre&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-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": "djhapjcztqfdn",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "nonznzcayqthptjgpcgzubtrg",
                                    "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": "lpglghsjqlmcmpmsv",
                                    "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=djhapjcztqfdn&sortBy=nonznzcayqthptjgpcgzubtrg&sortOrder=asc&filter[]=&filter.search=lpglghsjqlmcmpmsv&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": "gsuprrtjcrpi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "inagimandxleowbt",
                                    "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": "bhucmaknqwybayvrtjbnnok",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/mobile-audit-result-status?page=1&perPage=20&sort=gsuprrtjcrpi&sortBy=inagimandxleowbt&sortOrder=desc&filter[]=&filter.search=bhucmaknqwybayvrtjbnnok&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-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": "dkuxlwgtnpsqeovk",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ehgsdxlz",
                                    "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": "waeergxexfdfvksnwrdg",
                                    "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-build-number?page=1&perPage=20&sort=dkuxlwgtnpsqeovk&sortBy=ehgsdxlz&sortOrder=desc&filter[]=&filter.search=waeergxexfdfvksnwrdg&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-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": "afughjdvavqgfryi",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "dbkzztwljjntfaflksksd",
                                    "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": "xpshydhsyvgzndcvrkeqjx",
                                    "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-device-model?page=1&perPage=20&sort=afughjdvavqgfryi&sortBy=dbkzztwljjntfaflksksd&sortOrder=asc&filter[]=&filter.search=xpshydhsyvgzndcvrkeqjx&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-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": "wkizopavmvclosflfdmmc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "ivulcnstrrybkjgh",
                                    "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": "msguscomxhizztncu",
                                    "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-operator-label?page=1&perPage=20&sort=wkizopavmvclosflfdmmc&sortBy=ivulcnstrrybkjgh&sortOrder=asc&filter[]=&filter.search=msguscomxhizztncu&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-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": "knbvcdjeuueso",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "fcmeoakaejdcrnfzqxzjhl",
                                    "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": "gkrudbrgetwrrmvmtgl",
                                    "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-os-version?page=1&perPage=20&sort=knbvcdjeuueso&sortBy=fcmeoakaejdcrnfzqxzjhl&sortOrder=desc&filter[]=&filter.search=gkrudbrgetwrrmvmtgl&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-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": "bqpmnrmfppemtlzrljtnbtlrj",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xpinbrp",
                                    "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": "cyxtjycfureqxxqulkx",
                                    "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-platform?page=1&perPage=20&sort=bqpmnrmfppemtlzrljtnbtlrj&sortBy=xpinbrp&sortOrder=desc&filter[]=&filter.search=cyxtjycfureqxxqulkx&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-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": "jvjashviwvyotkrcleimql",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "srxjopswvvtzmbitywgulpz",
                                    "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": "iwnepxbsq",
                                    "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\/note?page=1&perPage=20&sort=jvjashviwvyotkrcleimql&sortBy=srxjopswvvtzmbitywgulpz&sortOrder=desc&filter[]=&filter.search=iwnepxbsq&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\\\/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": "ovyesqapiiutcqjzzfjodzyg",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "xnpwjumv",
                                    "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": "ishgyyidsrivynsvpgetto",
                                    "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=ovyesqapiiutcqjzzfjodzyg&sortBy=xnpwjumv&sortOrder=desc&filter[]=&filter.search=ishgyyidsrivynsvpgetto&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": "ugmsthinnfwlkicw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "kyvsbiuetbizbyy",
                                    "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": "yijgpglxqzablynr",
                                    "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=ugmsthinnfwlkicw&sortBy=kyvsbiuetbizbyy&sortOrder=asc&filter[]=&filter.search=yijgpglxqzablynr&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": "hfwfmauhpftgebvaxx",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "rjqwtsjbzefbykbzhwvgx",
                                    "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": "zty",
                                    "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-template-format?page=1&perPage=20&sort=hfwfmauhpftgebvaxx&sortBy=rjqwtsjbzefbykbzhwvgx&sortOrder=desc&filter[]=&filter.search=zty&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-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": "dmobryccsjkxqppsetsmv",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "qjwurjbzqfgnjwy",
                                    "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": "djxsnnla",
                                    "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=dmobryccsjkxqppsetsmv&sortBy=qjwurjbzqfgnjwy&sortOrder=asc&filter[]=&filter.search=djxsnnla&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": "jpftwmfzazyiedzleftxpopw",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "gxkclcrh",
                                    "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": "ptnjtmxevrezlwyajkhlzbns",
                                    "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=jpftwmfzazyiedzleftxpopw&sortBy=gxkclcrh&sortOrder=desc&filter[]=&filter.search=ptnjtmxevrezlwyajkhlzbns&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": "qlrxetfvwoilcxsf",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "sappqqirvc",
                                    "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": "hbmbopczool",
                                    "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\/role?page=1&perPage=20&sort=qlrxetfvwoilcxsf&sortBy=sappqqirvc&sortOrder=desc&filter[]=&filter.search=hbmbopczool&filter.active=&filter.enabled=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/type\/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": "eqxlhpnxbgbgtpryb",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "lkoghdujufyuumkvwg",
                                    "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": "kmz",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.active",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "filter.enabled",
                                    "value": "",
                                    "description": "",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/type\/user-address?page=1&perPage=20&sort=eqxlhpnxbgbgtpryb&sortBy=lkoghdujufyuumkvwg&sortOrder=desc&filter[]=&filter.search=kmz&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\\\/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": "uudszmmzenowkgmaemlc",
                                    "description": "Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "usnhpbrjnwf",
                                    "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": "jurrwalcbrtbklfvbgaa",
                                    "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\/warranty?page=1&perPage=20&sort=uudszmmzenowkgmaemlc&sortBy=usnhpbrjnwf&sortOrder=asc&filter[]=&filter.search=jurrwalcbrtbklfvbgaa&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\\\/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": "nobis",
                                    "description": "The ID of the verify email."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "aperiam",
                                    "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": "3"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6ImlHTlZqdEFtNStJbGx3MHRBbTg1aUE9PSIsInZhbHVlIjoibXh6SVhLSmtlc2g5WXlpeWFPaUdONVBxN1JRQjBxc2pCU05vbHZlQzBjUFJzY3c5VFhQQlhOVitwUDNmeWdnOXVoN3NQZ0hHYmZwaU5qcWRHVnFDbGk3a0tsU3kxK0J2VDZlTjdQY2pINnNBN25VNC9IRGhnSjVpZlBZMCs2YysiLCJtYWMiOiI5MGY0ZjQ4MjM0Nzk3ZjkyY2E5OGU2MGI1YzY0M2ZkNDZjNWNlMDg2NDNhY2M1NDM0ZjIzZjExYmUzNTI0OTE2IiwidGFnIjoiIn0%3D; expires=Fri, 08 May 2026 11:50:21 GMT; Max-Age=7200; path=\/; domain=tracklabsolar.com; secure; samesite=lax; tracklab_session=eyJpdiI6ImFUbkZPQ1NqS091MXovUUNwRFo1QUE9PSIsInZhbHVlIjoiT3dDWWc2NUQwS1R1ZFhyaTBhd3M3NHVKblFmYVR4aEZwVTU0WDliMWl6VjY1SmwvbXJTWHR4eWpGcjUvUTJCZWRLdjRoMU9lUDQxemV3MUhrdStjQVIrbjNTYVAwZ3ZkZlBSNlZqdlhkZTBTN0wxZjl1Ukcza1I3dDBiTHZ3TmwiLCJtYWMiOiJiNjEzN2Q5N2JlYWFmZTc2ODc1NzIwNjVlMjgxN2ZiNzVmOWNiM2MxYjU3ZWYxZjA0ZTljZjVhNmFiMTExMzZjIiwidGFnIjoiIn0%3D; expires=Fri, 08 May 2026 11:50:21 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": "laboriosam",
                                    "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": "unde",
                                    "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-05-08T09:50:21+00:00\",\"acceptedAt\":null,\"createdAt\":\"2026-05-08T09:50:21+00:00\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin - Activity Logs",
            "description": "",
            "item": [
                {
                    "name": "List all activity logs (global scope).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/activity-logs",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "sa.device-model-type",
                                    "description": "Filter by event category (e.g., \"sa.device-model-type\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "create",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "User",
                                    "description": "Filter by affected model type (short name, e.g., \"User\", \"Farm\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "companySlug",
                                    "value": "acme-corp",
                                    "description": "Filter by the company slug affected by the activity. The slug of an existing record in the companies table.",
                                    "disabled": false
                                },
                                {
                                    "key": "impersonatorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the admin who was impersonating during the action. Must be a valid UUID. The uuid of an existing record in the users table.",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "firmware",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "created_at",
                                    "description": "Field to sort by (created_at, event, description, log_name).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/activity-logs?page=1&perPage=25&event=sa.device-model-type&action=create&logName=default&subjectType=User&causerUuid=550e8400-e29b-41d4-a716-446655440000&companySlug=acme-corp&impersonatorUuid=550e8400-e29b-41d4-a716-446655440000&fromDate=2026-01-01&toDate=2026-12-31&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=firmware&sortBy=created_at&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns paginated activity logs with optional filtering by event type,\naction, date range, causer, and other parameters."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get available filter options for activity logs.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/activity-logs\/filter-options",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "sa.device-model-type",
                                    "description": "Filter by event category (e.g., \"sa.device-model-type\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "create",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "User",
                                    "description": "Filter by affected model type (short name, e.g., \"User\", \"Farm\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "companySlug",
                                    "value": "acme-corp",
                                    "description": "Filter by the company slug affected by the activity. The slug of an existing record in the companies table.",
                                    "disabled": false
                                },
                                {
                                    "key": "impersonatorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the admin who was impersonating during the action. Must be a valid UUID. The uuid of an existing record in the users table.",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "firmware",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "created_at",
                                    "description": "Field to sort by (created_at, event, description, log_name).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/activity-logs\/filter-options?page=1&perPage=25&event=sa.device-model-type&action=create&logName=default&subjectType=User&causerUuid=550e8400-e29b-41d4-a716-446655440000&companySlug=acme-corp&impersonatorUuid=550e8400-e29b-41d4-a716-446655440000&fromDate=2026-01-01&toDate=2026-12-31&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=firmware&sortBy=created_at&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns distinct values for events, log names, and subject types\nto populate filter dropdowns in the UI."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Export activity logs.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/activity-logs\/export",
                            "query": [
                                {
                                    "key": "startDate",
                                    "value": "2026-01-01",
                                    "description": "Filter activities from this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "endDate",
                                    "value": "2026-12-31",
                                    "description": "Filter activities up to this date (ISO 8601 format). Must be a valid date. Must be a date after or equal to startDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "event",
                                    "value": "sa.device-model-type",
                                    "description": "Filter by event category (e.g., \"sa.device-model-type\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "action",
                                    "value": "create",
                                    "description": "Filter by action type (e.g., \"create\", \"update\", \"delete\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "logName",
                                    "value": "default",
                                    "description": "Filter by log channel name. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "subjectType",
                                    "value": "User",
                                    "description": "Filter by affected model type (short name, e.g., \"User\", \"Farm\"). Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "causerUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by the UUID of the user who performed the action. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "batchUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by batch UUID to get related activities. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "firmware",
                                    "description": "Search in properties, description, and event fields. Must not be greater than 255 characters.",
                                    "disabled": false
                                },
                                {
                                    "key": "format",
                                    "value": "csv",
                                    "description": "Export format: csv or json (default: json).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/activity-logs\/export?startDate=2026-01-01&endDate=2026-12-31&event=sa.device-model-type&action=create&logName=default&subjectType=User&causerUuid=550e8400-e29b-41d4-a716-446655440000&batchUuid=550e8400-e29b-41d4-a716-446655440000&search=firmware&format=csv"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Exports activity logs with optional filtering. Supports CSV and JSON formats.\nUses streaming for memory-efficient export of large datasets."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin - Company Users",
            "description": "",
            "item": [
                {
                    "name": "Create a new user for the specified company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/users",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"new.user@example.com\",\"firstName\":\"John\",\"lastName\":\"Doe\",\"countryIsoCode\":\"US\",\"phoneNumber\":\"+1234567890\",\"role\":\"admin\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Remove a user from a specific company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/users\/:user_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/users\/:user_uuid",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Data Retention",
            "description": "",
            "item": [
                {
                    "name": "List all data retention audit records.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/audits",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "completed",
                                    "description": "Filter by audit status (e.g., \"pending\", \"completed\", \"failed\").",
                                    "disabled": false
                                },
                                {
                                    "key": "dataType",
                                    "value": "device-messages",
                                    "description": "Filter by data type (e.g., \"device-messages\").",
                                    "disabled": false
                                },
                                {
                                    "key": "operation",
                                    "value": "delete",
                                    "description": "Filter by operation type (e.g., \"delete\", \"archive\").",
                                    "disabled": false
                                },
                                {
                                    "key": "startedAfter",
                                    "value": "2026-01-01",
                                    "description": "Filter audits started after this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "startedBefore",
                                    "value": "2026-12-31",
                                    "description": "Filter audits started before this date (ISO 8601 format). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "started_at",
                                    "description": "Field to sort by (started_at, completed_at, created_at, data_type, operation, status, record_count).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/audits?page=1&perPage=25&status=completed&dataType=device-messages&operation=delete&startedAfter=2026-01-01&startedBefore=2026-12-31&sortBy=started_at&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a single data retention audit record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/audits\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/audits\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "cc58b8da-c994-4cf2-a6d7-e7267b267ca2",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List global default retention policies.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/defaults",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/defaults"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List effective retention policies for a company.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create or update a company retention policy override.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"dataType\":\"measurement\",\"retentionDays\":365,\"archiveEnabled\":true}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update a company retention policy override for a specific data type.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "dataRetentionDataType_slug",
                                    "key": "dataRetentionDataType_slug",
                                    "value": "collector-measurements",
                                    "description": "The slug of the dataRetentionDataType."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"retentionDays\":730,\"archiveEnabled\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a company retention policy override, reverting to global default.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/data-retention\/companies\/:company_slug\/policies\/:dataRetentionDataType_slug",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "dataRetentionDataType_slug",
                                    "key": "dataRetentionDataType_slug",
                                    "value": "collector-measurements",
                                    "description": "The slug of the dataRetentionDataType."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Impersonation",
            "description": "",
            "item": [
                {
                    "name": "Stop the current impersonation session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/stop",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/stop"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get current impersonation status.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Start an impersonation session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/start",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/start"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List active impersonation sessions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/sessions",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination (minimum: 1). Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of items per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "impersonatorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by impersonator user UUID. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "targetUserUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440000",
                                    "description": "Filter by target user UUID. Must be a valid UUID.",
                                    "disabled": false
                                },
                                {
                                    "key": "active",
                                    "value": "1",
                                    "description": "Filter by active sessions (default true).",
                                    "disabled": false
                                },
                                {
                                    "key": "fromDate",
                                    "value": "2026-01-01",
                                    "description": "Filter sessions starting on\/after this date (ISO 8601). Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "toDate",
                                    "value": "2026-12-31",
                                    "description": "Filter sessions starting on\/before this date (ISO 8601). Must be a valid date. Must be a date after or equal to fromDate.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy",
                                    "value": "startedAt",
                                    "description": "Sort field (startedAt, expiresAt, createdAt).",
                                    "disabled": false
                                },
                                {
                                    "key": "sortOrder",
                                    "value": "desc",
                                    "description": "Sort direction (asc, desc).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/sessions?page=1&perPage=25&impersonatorUuid=550e8400-e29b-41d4-a716-446655440000&targetUserUuid=550e8400-e29b-41d4-a716-446655440000&active=1&fromDate=2026-01-01&toDate=2026-12-31&sortBy=startedAt&sortOrder=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Terminate an impersonation session (admin override).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/impersonation\/sessions\/:session_uuid\/terminate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/impersonation\/sessions\/:session_uuid\/terminate",
                            "variable": [
                                {
                                    "id": "session_uuid",
                                    "key": "session_uuid",
                                    "value": "b411b1bc-1db1-3a6f-89f1-47d7b3d04133",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - TrackLab Users",
            "description": "",
            "item": [
                {
                    "name": "Elevate a TrackLab user to super admin status.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/elevate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/elevate",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Revoke super admin status from a TrackLab user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/tracklab\/users\/:user_uuid\/revoke",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/tracklab\/users\/:user_uuid\/revoke",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Super Admin - Users",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/sa\/users",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"search\":\"tim\",\"companySlug\":\"tracklab-solar\",\"role\":\"admin\",\"isActive\":true,\"page\":1,\"perPage\":25}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null},{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/role",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/role",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/role",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/sa\/users\/{user_uuid}\/permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:user_uuid\/permissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:user_uuid\/permissions",
                            "variable": [
                                {
                                    "id": "user_uuid",
                                    "key": "user_uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"updated.user@example.com\",\"firstName\":\"Tim\",\"lastName\":\"Haak\",\"countryIsoCode\":\"NL\",\"phoneNumber\":\"+31612345678\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"uuid\":\"b11fab33-a56a-4a78-a3c1-b9d324c6aacd\",\"createdAt\":\"2025-11-12T20:27:08+00:00\",\"updatedAt\":\"2026-02-10T15:20:26+00:00\",\"defaultCompanySlug\":null,\"emailVerifiedAt\":null,\"defaultCountryIsoCode\":\"\",\"defaultCountryEmoji\":\"\",\"email\":\"liquid.ideas@gmail.com\",\"firstName\":\"Jo\",\"lastName\":\"Whitehouse\",\"phoneNumbers\":[],\"roles\":[],\"imgUrl\":null,\"imgThumbUrl\":null,\"imgLargeUrl\":null,\"imgUrlExpiresAt\":null,\"isActive\":true,\"disabledAt\":null,\"status\":null,\"statusName\":null}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/sa\/users\/{uuid}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/users\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/users\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "b11fab33-a56a-4a78-a3c1-b9d324c6aacd",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/sa\/users\/{user_uuid}\/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\":\"voluptatem\"}"
                        },
                        "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": "et",
                                    "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": "dicta",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a company's logo.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/logo",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/logo",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get a company's logo using a signed URL token.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/c\/:company_slug\/logo\/:signedToken\/:format\/image.webp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/c\/:company_slug\/logo\/:signedToken\/:format\/image.webp",
                            "variable": [
                                {
                                    "id": "company_slug",
                                    "key": "company_slug",
                                    "value": "tracklab",
                                    "description": "The slug of the company."
                                },
                                {
                                    "id": "signedToken",
                                    "key": "signedToken",
                                    "value": "eyJpdiI6...",
                                    "description": "The encrypted signed token."
                                },
                                {
                                    "id": "format",
                                    "key": "format",
                                    "value": "square-256-webp",
                                    "description": "The image format\/conversion name."
                                },
                                {
                                    "id": "company",
                                    "key": "company",
                                    "value": "demo-gui",
                                    "description": "The company slug."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "The token contains encrypted company slug and expiry timestamp.\nURL format: \/sa\/c\/{companySlug}\/logo\/{signedToken}\/{format}\/image.webp"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "The image file stream",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"message\": \"Invalid or expired token.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"Company not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Super Admin > Mobile Audit Events",
            "description": "",
            "item": [
                {
                    "name": "List mobile audit events",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/audit-events",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination. Must be at least 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "perPage",
                                    "value": "25",
                                    "description": "Number of audit events to return per page (1-100). Must be at least 1. Must not be greater than 100.",
                                    "disabled": false
                                },
                                {
                                    "key": "companySlug",
                                    "value": "acme-corp",
                                    "description": "Filter audit events to a single company slug. The slug of an existing record in the companies table.",
                                    "disabled": false
                                },
                                {
                                    "key": "collectorUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440010",
                                    "description": "Filter audit events to a single collector UUID. Must be a valid UUID. The uuid of an existing record in the collectors table.",
                                    "disabled": false
                                },
                                {
                                    "key": "userUuid",
                                    "value": "550e8400-e29b-41d4-a716-446655440011",
                                    "description": "Filter audit events to a single user UUID. Must be a valid UUID. The uuid of an existing record in the users table.",
                                    "disabled": false
                                },
                                {
                                    "key": "eventName",
                                    "value": "mobile-ncu",
                                    "description": "Filter by mobile audit event type slug. The slug of an existing record in the mobile_audit_event_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "actionName",
                                    "value": "command-send",
                                    "description": "Filter by mobile audit action type slug. The slug of an existing record in the mobile_audit_action_types table.",
                                    "disabled": false
                                },
                                {
                                    "key": "dateFrom",
                                    "value": "2026-03-01T00%3A00%3A00Z",
                                    "description": "Only include audit events that occurred on or after this ISO 8601 timestamp. Must be a valid date.",
                                    "disabled": false
                                },
                                {
                                    "key": "dateTo",
                                    "value": "2026-03-11T23%3A59%3A59Z",
                                    "description": "Only include audit events that occurred on or before this ISO 8601 timestamp. Must be a valid date. Must be a date after or equal to dateFrom.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/audit-events?page=1&perPage=25&companySlug=acme-corp&collectorUuid=550e8400-e29b-41d4-a716-446655440010&userUuid=550e8400-e29b-41d4-a716-446655440011&eventName=mobile-ncu&actionName=command-send&dateFrom=2026-03-01T00%3A00%3A00Z&dateTo=2026-03-11T23%3A59%3A59Z"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a paginated list of all mobile audit events with optional filtering."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a mobile audit event",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/sa\/mobile\/audit-events\/:auditEvent_uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/sa\/mobile\/audit-events\/:auditEvent_uuid",
                            "variable": [
                                {
                                    "id": "auditEvent_uuid",
                                    "key": "auditEvent_uuid",
                                    "value": "550c040d-28b2-3e04-82a8-7f2c3ff5aa11",
                                    "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": "11"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"ok\",\"oldestPendingSeconds\":0,\"pendingCount\":0,\"lastAlertSentAt\":null,\"degradedSince\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}