{ "opencollection": "1.0.0", "info": { "name": "ADT Business Access Codes Security Systems API", "version": "1" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://auth.adt.com/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Security Systems", "type": "folder" }, "items": [ { "info": { "name": "ADT List Security Systems", "type": "http" }, "http": { "method": "GET", "url": "https://api.adt.com/business/v1/systems" }, "docs": "Retrieve all security systems associated with the authenticated account." }, { "info": { "name": "ADT Get a Security System", "type": "http" }, "http": { "method": "GET", "url": "https://api.adt.com/business/v1/systems/:systemId", "params": [ { "name": "systemId", "value": "", "type": "path", "description": "Unique identifier of the security system." } ] }, "docs": "Retrieve details of a specific security system including current status and zone information." }, { "info": { "name": "ADT Arm a Security System", "type": "http" }, "http": { "method": "POST", "url": "https://api.adt.com/business/v1/systems/:systemId/arm", "params": [ { "name": "systemId", "value": "", "type": "path", "description": "Unique identifier of the security system." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Arm a security system in away or stay mode." }, { "info": { "name": "ADT Disarm a Security System", "type": "http" }, "http": { "method": "POST", "url": "https://api.adt.com/business/v1/systems/:systemId/disarm", "params": [ { "name": "systemId", "value": "", "type": "path", "description": "Unique identifier of the security system." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Disarm a security system using a valid access code." } ] } ], "bundled": true }