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