Skip to content

Python module to interact with the Proofpoint Security Awareness Training (PSAT) Results API

Notifications You must be signed in to change notification settings

regg00/psat-result-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project description

Small and simple package to connect to the PSAT (Proofpoint Security Awareness Traning) result API.

Proofpoint Result API

See the REST API full documentation for more information.

Installation

pip install psat-result-api

Example

from psat import ResultApi

p = ResultApi("insert-api-token-here")

# Return training assignments data
training = p.get_training() 

# Return users data with some parameters
users = p.get_users(
        params={
            "user_tag_enable": "FALSE",
            "filter[_useremailaddress]": "[[email protected]]",
        }
    )

Supported endpoints

  • CyberStrength ( get_users() )
  • PhishAlarm ( get_cyberstrength() )
  • Phishing ( get_phishalarm() )
  • Training ( get_phishing() )
  • Users ( get_training() )
  • TrainingEnrollments ( get_trainingenrollments() )

About

Python module to interact with the Proofpoint Security Awareness Training (PSAT) Results API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages