Gophish API
Gophish was built from the ground-up with a JSON API that makes it easy for developers and sysadmins to automate simulated phishing campaigns.
-These docs describe how to use the gophish API.
+These docs describe how to use the gophish API.
Authorization
All API requests require the use of a generated API key. You can find your API key, or generate a new one, by navigating to the /settings endpoint, or clicking the “Settings” sidebar item.
diff --git a/templates/gophish.apib b/templates/gophish.apib index 6bbb0cb1..04285305 100644 --- a/templates/gophish.apib +++ b/templates/gophish.apib @@ -4,7 +4,7 @@ HOST: http://localhost:3333/api/ # Gophish API Gophish was built from the ground-up with a JSON API that makes it easy for developers and sysadmins to automate simulated phishing campaigns. -These docs describe how to use the [gophish](https://github.com/jordan-wright/gophish) API. +These docs describe how to use the [gophish](https://github.com/gophish/gophish) API. ::: note ## Authorization diff --git a/util/util.go b/util/util.go index af5f27af..7ab57d8e 100644 --- a/util/util.go +++ b/util/util.go @@ -9,7 +9,7 @@ import ( "net/mail" "github.com/jordan-wright/email" - "github.com/jordan-wright/gophish/models" + "github.com/gophish/gophish/models" ) // ParseMail takes in an HTTP Request and returns an Email object diff --git a/worker/worker.go b/worker/worker.go index dc19cbb9..568b198b 100644 --- a/worker/worker.go +++ b/worker/worker.go @@ -10,7 +10,7 @@ import ( "text/template" "github.com/jordan-wright/email" - "github.com/jordan-wright/gophish/models" + "github.com/gophish/gophish/models" ) // Logger is the logger for the worker