This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06fd618
commit 7797f09
Showing
1 changed file
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -522,7 +522,7 @@ paths: | |
200: | ||
description: "The Encrypted Data" | ||
content: | ||
application/json: | ||
plain/text: | ||
schema: | ||
type: string | ||
examples: | ||
|
@@ -611,7 +611,7 @@ paths: | |
200: | ||
description: "The Decrypted Data" | ||
content: | ||
application/json: | ||
plain/text: | ||
schema: | ||
type: string | ||
examples: | ||
|
@@ -1718,7 +1718,7 @@ paths: | |
200: | ||
description: "The dog fact" | ||
content: | ||
application/json: | ||
plain/text: | ||
schema: | ||
type: string | ||
examples: | ||
|
@@ -1771,7 +1771,7 @@ paths: | |
200: | ||
description: "The cat fact" | ||
content: | ||
application/json: | ||
plain/text: | ||
schema: | ||
type: string | ||
examples: | ||
|
@@ -1824,7 +1824,7 @@ paths: | |
200: | ||
description: "The random fact" | ||
content: | ||
application/json: | ||
plain/text: | ||
schema: | ||
type: string | ||
examples: | ||
|
@@ -2262,7 +2262,7 @@ paths: | |
200: | ||
description: "The Kanye West quote" | ||
content: | ||
application/json: | ||
plain/text: | ||
schema: | ||
type: string | ||
examples: | ||
|
@@ -2315,7 +2315,7 @@ paths: | |
200: | ||
description: "The Ron Swanson quote" | ||
content: | ||
application/json: | ||
plain/text: | ||
schema: | ||
type: string | ||
examples: | ||
|
@@ -2669,11 +2669,12 @@ paths: | |
Returns a success message if successful, otherwise returns an error. | ||
This routes uses a global administrative email account that allows the requester to send an email from any username. | ||
summary: "Send an Email using Global Account" | ||
parameters: | ||
- in: "header" | ||
name: 'x-user' | ||
required: true | ||
description: "The Account Credentals used to send the email" | ||
description: "The Account Credentals used to access the administrative email account" | ||
example: "XQGdt1KLapMtFZqGCdzyLw.xcWtsV5Xb4T-yEE0lHtLyC60JC4" | ||
schema: | ||
type: string | ||
|
@@ -2686,7 +2687,7 @@ paths: | |
Syntax: `oneCharLabel:Value;oneCharLabel:Value...` | ||
Currently, only 2 values are used; `n` for the sender's name and `r` for the reply-to address. | ||
example: "n:Example User;r:" | ||
example: "n:Example User;r:[email protected]" | ||
schema: | ||
type: string | ||
- in: "header" | ||
|
@@ -2706,17 +2707,17 @@ paths: | |
examples: | ||
Plain-Text: | ||
value: | ||
to: "" | ||
to: "[email protected]" | ||
subject: "Test" | ||
text: "This is a test email" | ||
HTML: | ||
value: | ||
to: "" | ||
to: "[email protected]" | ||
subject: "Test" | ||
html: "<h1>This is a test email</h1>" | ||
Link: | ||
value: | ||
to: "" | ||
to: "[email protected]" | ||
subject: "Test" | ||
url: "https://example.com" | ||
responses: | ||
|