appfolio-core-workflow-a
Integrates with AppFolio API to build a comprehensive property management dashboard, managing properties, tenants, and leases.
Install this skill
Security score
The appfolio-core-workflow-a skill was audited on May 19, 2026 and we found 17 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 44 | const headers = { Authorization: `Bearer ${token.access_token}`, 'Content-Type': 'application/json' }; |
Template literal with variable interpolation in command context
| 62 | console.log(`Property created: ${property.id}`); |
Template literal with variable interpolation in command context
| 90 | `https://api.appfolio.com/v1/properties/${property.id}/units?status=vacant`, |
Template literal with variable interpolation in command context
| 93 | console.log(`Vacant units: ${units.data.length} of ${units.meta.total}`); |
Fetch to external URL
| 34 | const token = await fetch('https://api.appfolio.com/oauth/token', { |
Fetch to external URL
| 50 | const property = await fetch('https://api.appfolio.com/v1/properties', { |
Fetch to external URL
| 68 | const tenant = await fetch('https://api.appfolio.com/v1/tenants', { |
Fetch to external URL
| 76 | await fetch('https://api.appfolio.com/v1/leases', { |
Access to .env file
| 39 | client_id: process.env.APPFOLIO_CLIENT_ID!, |
Access to .env file
| 40 | client_secret: process.env.APPFOLIO_CLIENT_SECRET!, |
External URL reference
| 34 | const token = await fetch('https://api.appfolio.com/oauth/token', { |
External URL reference
| 50 | const property = await fetch('https://api.appfolio.com/v1/properties', { |
External URL reference
| 68 | const tenant = await fetch('https://api.appfolio.com/v1/tenants', { |
External URL reference
| 76 | await fetch('https://api.appfolio.com/v1/leases', { |
External URL reference
| 90 | `https://api.appfolio.com/v1/properties/${property.id}/units?status=vacant`, |
External URL reference
| 113 | - [AppFolio Stack APIs](https://www.appfolio.com/stack/partners/api) |
External URL reference
| 114 | - [AppFolio Engineering Blog](https://engineering.appfolio.com) |