{ "opencollection": "1.0.0", "info": { "name": "Paradox Authentication Location Areas API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/auth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Location Areas", "type": "folder" }, "items": [ { "info": { "name": "Paradox Get location areas", "type": "http" }, "http": { "method": "GET", "url": "https://api.paradox.ai/api/v1/public/location/:location_id/areas", "params": [ { "name": "location_id", "value": "", "type": "path", "description": "Location identifier" } ] }, "docs": "Retrieve all areas for a specific location." }, { "info": { "name": "Paradox Create location area", "type": "http" }, "http": { "method": "POST", "url": "https://api.paradox.ai/api/v1/public/location/:location_id/areas", "params": [ { "name": "location_id", "value": "", "type": "path", "description": "Location identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new area within a location." }, { "info": { "name": "Paradox Get single location area", "type": "http" }, "http": { "method": "GET", "url": "https://api.paradox.ai/api/v1/public/location/:location_id/areas/:area_id", "params": [ { "name": "location_id", "value": "", "type": "path", "description": "Location identifier" }, { "name": "area_id", "value": "", "type": "path", "description": "Area identifier" } ] }, "docs": "Retrieve details for a specific area within a location." }, { "info": { "name": "Paradox Update location area", "type": "http" }, "http": { "method": "PUT", "url": "https://api.paradox.ai/api/v1/public/location/:location_id/areas/:area_id", "params": [ { "name": "location_id", "value": "", "type": "path", "description": "Location identifier" }, { "name": "area_id", "value": "", "type": "path", "description": "Area identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing area within a location." }, { "info": { "name": "Paradox Delete location area", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.paradox.ai/api/v1/public/location/:location_id/areas/:area_id", "params": [ { "name": "location_id", "value": "", "type": "path", "description": "Location identifier" }, { "name": "area_id", "value": "", "type": "path", "description": "Area identifier" } ] }, "docs": "Delete an area within a location." } ] } ], "bundled": true }