"{\n    \"variable\": [\n        {\n            \"id\": \"baseUrl\",\n            \"key\": \"baseUrl\",\n            \"type\": \"string\",\n            \"name\": \"string\",\n            \"value\": \"https:\\\/\\\/monitorhq.com.au\"\n        }\n    ],\n    \"info\": {\n        \"name\": \"Monitor HQ API Documentation\",\n        \"_postman_id\": \"9cbffd96-cb3e-435c-98cc-c41c271c5662\",\n        \"description\": \"API for monitoring ACN\\\/ABN entities with real-time alerts and subscription management\",\n        \"schema\": \"https:\\\/\\\/schema.getpostman.com\\\/json\\\/collection\\\/v2.1.0\\\/collection.json\"\n    },\n    \"item\": [\n        {\n            \"name\": \"Account\",\n            \"description\": \"\\nAPIs for account information\",\n            \"item\": [\n                {\n                    \"name\": \"Get account information\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/account\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/account\"\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"Get detailed information about the authenticated user's account including team membership.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"name\\\": \\\"John Doe\\\",\\n  \\\"email\\\": \\\"admin@example.com\\\",\\n  \\\"account_type\\\": \\\"admin\\\",\\n  \\\"current_team\\\": {\\n    \\\"name\\\": \\\"John's Team\\\",\\n    \\\"personal_team\\\": true,\\n    \\\"is_parent_team\\\": true\\n  },\\n  \\\"owned_teams\\\": [\\n    {\\n      \\\"name\\\": \\\"John's Team\\\",\\n      \\\"personal_team\\\": true,\\n      \\\"is_parent_team\\\": true\\n    }\\n  ],\\n  \\\"member_of_teams\\\": [\\n    {\\n      \\\"id\\\": 2,\\n      \\\"name\\\": \\\"Another Team\\\",\\n      \\\"role\\\": \\\"editor\\\"\\n    }\\n  ]\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"name\": \"Identifier Validation\",\n            \"description\": \"\\nAPIs for validating and formatting ACN\\\/ABN identifiers\",\n            \"item\": [\n                {\n                    \"name\": \"Check identifier\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/identifier\\\/check\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/identifier\\\/check\"\n                        },\n                        \"method\": \"POST\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": {\n                            \"mode\": \"raw\",\n                            \"raw\": \"{\\\"identifier\\\":\\\"123456789\\\"}\"\n                        },\n                        \"description\": \"Validate and format an ACN or ABN identifier. This endpoint will determine the type of identifier and format it correctly.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"valid\\\": true,\\n  \\\"type\\\": \\\"acn\\\",\\n  \\\"formatted\\\": \\\"123 456 789\\\",\\n  \\\"number\\\": \\\"123456789\\\"\\n}\",\n                            \"name\": \"\"\n                        },\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"valid\\\": true,\\n  \\\"type\\\": \\\"abn\\\",\\n  \\\"formatted\\\": \\\"12 345 678 901\\\",\\n  \\\"number\\\": \\\"12345678901\\\"\\n}\",\n                            \"name\": \"\"\n                        },\n                        {\n                            \"header\": [],\n                            \"code\": 422,\n                            \"body\": \"{\\n  \\\"valid\\\": false,\\n  \\\"message\\\": \\\"Invalid identifier format. Must be 9 digits (ACN) or 11 digits (ABN).\\\"\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"name\": \"Monitoring\",\n            \"description\": \"\\nAPIs for managing monitored entities\",\n            \"item\": [\n                {\n                    \"name\": \"List monitorings\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/monitorings\",\n                            \"query\": [\n                                {\n                                    \"key\": \"page\",\n                                    \"value\": \"1\",\n                                    \"description\": \"Page number for pagination.\",\n                                    \"disabled\": false\n                                },\n                                {\n                                    \"key\": \"per_page\",\n                                    \"value\": \"15\",\n                                    \"description\": \"Number of items per page.\",\n                                    \"disabled\": false\n                                },\n                                {\n                                    \"key\": \"risk_level\",\n                                    \"value\": \"high\",\n                                    \"description\": \"Filter by risk level (high, standard, low).\",\n                                    \"disabled\": false\n                                },\n                                {\n                                    \"key\": \"is_active\",\n                                    \"value\": \"1\",\n                                    \"description\": \"Filter by active status (default: true). Set to false to see stopped monitorings.\",\n                                    \"disabled\": false\n                                }\n                            ],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/monitorings?page=1&per_page=15&risk_level=high&is_active=1\"\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"Get a list of all monitorings for the current team. By default, only active monitorings are returned.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"data\\\": [\\n    {\\n      \\\"uuid\\\": \\\"123e4567-e89b-12d3-a456-426614174000\\\",\\n      \\\"entity_name\\\": \\\"Example Pty Ltd\\\",\\n      \\\"entity_type\\\": \\\"company\\\",\\n      \\\"acn\\\": \\\"123456789\\\",\\n      \\\"abn\\\": \\\"12345678901\\\",\\n      \\\"risk_level\\\": \\\"high\\\",\\n      \\\"added_at\\\": \\\"2026-01-15T10:00:00Z\\\"\\n    }\\n  ],\\n  \\\"links\\\": {\\n    \\\"first\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings?page=1\\\",\\n    \\\"last\\\": null,\\n    \\\"prev\\\": null,\\n    \\\"next\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings?page=2\\\"\\n  },\\n  \\\"meta\\\": {\\n    \\\"current_page\\\": 1,\\n    \\\"current_page_url\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings?page=1\\\",\\n    \\\"from\\\": 1,\\n    \\\"path\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings\\\",\\n    \\\"per_page\\\": 15,\\n    \\\"to\\\": 1\\n  }\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Add monitoring\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/monitorings\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/monitorings\"\n                        },\n                        \"method\": \"POST\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": {\n                            \"mode\": \"raw\",\n                            \"raw\": \"{\\\"acn\\\":\\\"123456789\\\",\\\"abn\\\":\\\"12345678901\\\",\\\"risk_level\\\":\\\"high\\\",\\\"notification_emails\\\":[\\\"admin@example.com\\\"]}\"\n                        },\n                        \"description\": \"Add an entity to your monitoring list. The entity will be fetched and monitored automatically.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 201,\n                            \"body\": \"{\\n  \\\"message\\\": \\\"Monitoring added successfully\\\",\\n  \\\"data\\\": {\\n    \\\"uuid\\\": \\\"123e4567-e89b-12d3-a456-426614174000\\\",\\n    \\\"entity_name\\\": \\\"Example Pty Ltd\\\",\\n    \\\"entity_type\\\": \\\"APTY\\\",\\n    \\\"acn\\\": \\\"123456789\\\",\\n    \\\"abn\\\": \\\"12345678901\\\",\\n    \\\"risk_level\\\": \\\"high\\\",\\n    \\\"added_at\\\": \\\"2026-01-15T10:00:00Z\\\"\\n  }\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Get monitoring details\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/monitorings\\\/:uuid\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/monitorings\\\/:uuid\",\n                            \"variable\": [\n                                {\n                                    \"id\": \"uuid\",\n                                    \"key\": \"uuid\",\n                                    \"value\": \"123e4567-e89b-12d3-a456-426614174000\",\n                                    \"description\": \"The monitoring UUID.\"\n                                }\n                            ]\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"Get detailed information about a specific monitoring by UUID.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"uuid\\\": \\\"123e4567-e89b-12d3-a456-426614174000\\\",\\n  \\\"risk_level\\\": \\\"high\\\",\\n  \\\"added_at\\\": \\\"2026-01-15T10:00:00Z\\\",\\n  \\\"entity_details\\\": {\\n    \\\"entity_name\\\": \\\"Example Pty Ltd\\\",\\n    \\\"entity_type\\\": \\\"APTY\\\",\\n    \\\"acn\\\": \\\"123456789\\\",\\n    \\\"abn\\\": \\\"12345678901\\\",\\n    \\\"state\\\": \\\"VIC\\\",\\n    \\\"acn_status\\\": \\\"REGD\\\",\\n    \\\"acn_registration_date\\\": \\\"2020-01-15T00:00:00Z\\\",\\n    \\\"acn_review_date\\\": \\\"2026-01-15T00:00:00Z\\\",\\n    \\\"abn_status\\\": \\\"Active\\\",\\n    \\\"abn_registration_date\\\": \\\"2020-01-15T00:00:00Z\\\",\\n    \\\"gst_date\\\": \\\"2020-01-15T00:00:00Z\\\",\\n    \\\"primary_address\\\": {\\n      \\\"type\\\": \\\"RG\\\",\\n      \\\"state\\\": \\\"VIC\\\",\\n      \\\"locality\\\": \\\"MELBOURNE\\\",\\n      \\\"postCode\\\": \\\"3000\\\",\\n      \\\"addressLine\\\": \\\"123 Example St\\\"\\n    },\\n    \\\"secondary_address\\\": {},\\n    \\\"business_names\\\": [],\\n    \\\"former_names\\\": []\\n  },\\n  \\\"recent_history\\\": [\\n    {\\n      \\\"type\\\": \\\"abn_registration\\\",\\n      \\\"effective_date\\\": \\\"2020-01-15T00:00:00Z\\\",\\n      \\\"title\\\": \\\"ABN Registered\\\",\\n      \\\"description\\\": \\\"Australian Business Number registered\\\"\\n    }\\n  ]\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Get monitoring history\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/monitorings\\\/:uuid\\\/history\",\n                            \"query\": [\n                                {\n                                    \"key\": \"page\",\n                                    \"value\": \"1\",\n                                    \"description\": \"Page number for pagination.\",\n                                    \"disabled\": false\n                                },\n                                {\n                                    \"key\": \"per_page\",\n                                    \"value\": \"15\",\n                                    \"description\": \"Number of items per page (max 100).\",\n                                    \"disabled\": false\n                                },\n                                {\n                                    \"key\": \"event_type\",\n                                    \"value\": \"abn_registration\",\n                                    \"description\": \"Filter by event type (company_registration, abn_registration, gst_registration, etc.).\",\n                                    \"disabled\": false\n                                }\n                            ],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/monitorings\\\/:uuid\\\/history?page=1&per_page=15&event_type=abn_registration\",\n                            \"variable\": [\n                                {\n                                    \"id\": \"uuid\",\n                                    \"key\": \"uuid\",\n                                    \"value\": \"123e4567-e89b-12d3-a456-426614174000\",\n                                    \"description\": \"The monitoring UUID.\"\n                                }\n                            ]\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"Get paginated check results history for a specific monitoring.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"data\\\": [\\n    {\\n      \\\"type\\\": \\\"abn_registration\\\",\\n      \\\"effective_date\\\": \\\"2020-01-15T00:00:00Z\\\",\\n      \\\"title\\\": \\\"ABN Registered\\\",\\n      \\\"description\\\": \\\"Australian Business Number registered\\\"\\n    }\\n  ],\\n  \\\"links\\\": {\\n    \\\"first\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings\\\/{uuid}\\\/history?page=1\\\",\\n    \\\"last\\\": null,\\n    \\\"prev\\\": null,\\n    \\\"next\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings\\\/{uuid}\\\/history?page=2\\\"\\n  },\\n  \\\"meta\\\": {\\n    \\\"current_page\\\": 1,\\n    \\\"current_page_url\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings\\\/{uuid}\\\/history?page=1\\\",\\n    \\\"from\\\": 1,\\n    \\\"path\\\": \\\"https:\\\/\\\/api.example.com\\\/v1\\\/monitorings\\\/{uuid}\\\/history\\\",\\n    \\\"per_page\\\": 15,\\n    \\\"to\\\": 3\\n  }\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Update monitoring\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/monitorings\\\/:uuid\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/monitorings\\\/:uuid\",\n                            \"variable\": [\n                                {\n                                    \"id\": \"uuid\",\n                                    \"key\": \"uuid\",\n                                    \"value\": \"123e4567-e89b-12d3-a456-426614174000\",\n                                    \"description\": \"The monitoring UUID.\"\n                                }\n                            ]\n                        },\n                        \"method\": \"PUT\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": {\n                            \"mode\": \"raw\",\n                            \"raw\": \"{\\\"risk_level\\\":\\\"standard\\\"}\"\n                        },\n                        \"description\": \"Update a monitoring's risk level.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"message\\\": \\\"Monitoring updated successfully\\\",\\n  \\\"data\\\": {\\n    \\\"uuid\\\": \\\"123e4567-e89b-12d3-a456-426614174000\\\",\\n    \\\"entity_name\\\": \\\"Example Pty Ltd\\\",\\n    \\\"entity_type\\\": \\\"company\\\",\\n    \\\"acn\\\": \\\"123456789\\\",\\n    \\\"abn\\\": \\\"12345678901\\\",\\n    \\\"risk_level\\\": \\\"standard\\\",\\n    \\\"added_at\\\": \\\"2026-01-15T10:00:00Z\\\"\\n  }\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Stop monitoring\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/monitorings\\\/:uuid\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/monitorings\\\/:uuid\",\n                            \"variable\": [\n                                {\n                                    \"id\": \"uuid\",\n                                    \"key\": \"uuid\",\n                                    \"value\": \"123e4567-e89b-12d3-a456-426614174000\",\n                                    \"description\": \"The monitoring UUID.\"\n                                }\n                            ]\n                        },\n                        \"method\": \"DELETE\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"Stop monitoring an entity. The entity will be removed from your monitoring list. Only team owners can stop monitorings.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"message\\\": \\\"Monitoring stopped successfully\\\"\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"name\": \"Subscription\",\n            \"description\": \"\\nAPIs for subscription status and usage\",\n            \"item\": [\n                {\n                    \"name\": \"Get subscription status\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/subscription\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/subscription\"\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"Get the current team's subscription status and usage information.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"has_subscription\\\": true,\\n  \\\"subscription\\\": {\\n    \\\"plan\\\": \\\"Professional\\\",\\n    \\\"status\\\": \\\"active\\\",\\n    \\\"subscribed_at\\\": \\\"2026-01-15 10:00:00\\\",\\n    \\\"expires_at\\\": \\\"2026-02-15 10:00:00\\\",\\n    \\\"max_entities\\\": 50,\\n    \\\"max_high_risk_entities\\\": 10\\n  },\\n  \\\"usage\\\": {\\n    \\\"total\\\": 25,\\n    \\\"high\\\": 5,\\n    \\\"standard\\\": 15,\\n    \\\"low\\\": 5\\n  },\\n  \\\"remaining\\\": {\\n    \\\"slots\\\": 25,\\n    \\\"high_risk_slots\\\": 5\\n  }\\n}\",\n                            \"name\": \"\"\n                        },\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"has_subscription\\\": false,\\n  \\\"message\\\": \\\"No active subscription found\\\"\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"auth\": {\n        \"type\": \"bearer\",\n        \"bearer\": [\n            {\n                \"key\": \"Authorization\",\n                \"type\": \"string\"\n            }\n        ]\n    }\n}"