A newsletter application that send mail about some usefull technical resource to the subscripted user's email in every week.
GET /api/v1/author
Header | Type | Description |
---|---|---|
Bearer Token |
string |
Required. Your JWT Authentication Token |
POST /api/v1/author/register
Body (JSON) | Type | Example | Description |
---|---|---|---|
name |
string |
John Smith |
Required. Your Full Name |
email |
string |
john.smith@example.com |
Required. Your Valid Email |
password |
string |
password |
Required. Your Password |
resources |
string |
[{title: "Resource Title", description: "Resource Description", url: "http://resource.url.com"}, ...] |
Required. Your Resources |
dayToSend |
string |
sat|sun|mon|tue|wed|thu|fri |
Required. Shortname of a day. |
POST /api/v1/author/login
Body (JSON) | Type | Example | Description |
---|---|---|---|
email |
string |
john.smith@example.com |
Required. Your Valid Email |
password |
string |
password |
Required. Your Password |
PATCH /api/v1/author
Body (JSON) | Type | Example | Description |
---|---|---|---|
name |
string |
John Smith |
Your Full Name |
password |
string |
password |
Your Password |
resources |
string |
[{title: "Resource Title", description: "Resource Description", url: "http://resource.url.com"}, ...] |
Your Resources |
dayToSend |
string |
sat|sun|mon|tue|wed|thu|fri |
Shortname of a day. |
DELETE /api/v1/author
POST api/v1/newsletter
Body (JSON) | Type | Example | Description |
---|---|---|---|
email |
string |
john.smith@example.com |
Required. Your Valid Email |