Landing Pages
Table of Contents
Quick Example
from gophish import Gophish
api_key = 'API_KEY'
api = Gophish(api_key)
for page in api.pages.get():
print page.nameModels
gophish.models.Page
Methods
gophish.api.pages.get(page_id=None)
gophish.api.pages.post(page)
gophish.api.pages.put(page)
gophish.api.pages.delete(page_id)
Examples
Get All Landing Pages
Get Single Landing Page
Create New Landing Page
Last updated