Privacy and security

Learn about the privacy and security requirements for listing an app in the marketplace

  1. All domains must pass the provided Burp scan. Any errors will be disclosed during the review process and must be addressed before receiving approval.
  2. Provide supporting evidence and describe how the app stores secrets and specify whether secrets are stored on the code repository (e.g., AWS keys in GitHub).
  3. Tokens must be encrypted. Provide supporting evidence and describe how the app stores tokens. Elaborate on what security controls are used to protect the monday.com user access token.
  4. Provide supporting evidence and share whether or not you're storing user data in the app database, what data is stored (e.g., board data or username), and what the stored user data is for. PII data should be stored encrypted and mentioned in your privacy policy. If using monday code, save the PII data in monday secure storage.
  5. Describe all of the scopes used in the app, why each one is needed, and what they're used for. You should only request the scopes that your app needs.
  6. Provide supporting evidence and describe what data is being logged and for how long logs are retained. If your app uses monday code, provide evidence that the monday logger is enabled.
  7. Provide supporting evidence and describe how data is encrypted at rest and what encryption algorithms are used. You can skip this requirement if your app uses monday storage.
  8. Provide supporting evidence and describe how your app protects against injection attacks (only relevant for apps using monday storage or an external DB).
  9. Provide supporting evidence and describe the input validation the app performs on all user-supplied data (e.g., All data is sanitized and HTML is encoded)
  10. Provide supporting evidence that you either own the domain names or have permission from the owner:
    1. The support email must match the domain name
    2. Create a public JSON file with this payload
      1. {
        "apps":[
        {"clientID":}
        ]
        }
        
    3. Add the JSON file to your domain and share it: https://your_domain/monday-app-association.json
  11. When monday.com or an end-user de-authorizes, deactivates, uninstalls, or otherwise terminates an app, you must do one of the following (not relevant if your app uses monday storage):
    1. Permanently delete all end-user data and any metadata that was collected, transmitted, created, or received by the app within 10 days
    2. Obtain express, written consent from the end-user to retain end-user data longer than 10 days, provided such consent is clear and explicit (refer to the developer terms)
  12. Complete the advanced security questionnaire to display on your app listing page (optional but recommended).
  13. Ensure cookies are HttpOnly. If not, they must only be used for clients and not part of the authentication process.
  14. Tracking cookies (and similar) that track users outside the app's scope must be clearly communicated to users, comply with cookies and other privacy legislation, and require user consent.
  15. Implement one of the following three secured authentication flows and answer the relevant questions:
    1. OAuth
      1. Why did you choose OAuth instead of Seamless Authentication?
      2. Does the app redirect to any malicious URLs during the OAuth/API token flow?
      3. Does the app handle the OAuth flow for users with multiple accounts?
    2. Seamless Authentication using shortTermToken for integration recipes
      1. Is the JWT signed with the app's signing secret to prove that the requests came from monday?
    3. Seamless Authentication using monday SDK for views
  16. If your app has a backend:
    1. Share where it is hosted
    2. Provide the full domain name (can't contain "monday" unless it reads " for monday")
  17. If your app has a frontend:
    1. Share where it is hosted (Zip file or custom URL)
    2. Provide the full domain name (can't contain "monday" unless it reads " for monday")
    3. Disclose the framework you're using – eg NextJS, Vue, React, etc.
  18. HTTPS certificates must be valid.
  19. HSTS must be enabled for your domains. Provide the share SSlab link.
  20. The application must use TLS 1.2 or higher to encrypt all of its traffic.
  21. Conduct a malware check for your domain and subdomain.
  22. List all third-party domains or products the app uses for both front and backend and explain why. This information must be included in your privacy policy.
  23. Authenticate and authorize all requests. Provide a screenshot of the authorization part of your code.