-
Notifications
You must be signed in to change notification settings - Fork 2
Backend Endpoints
marzookh edited this page Oct 27, 2022
·
23 revisions
| Modules | URLs | Methods Available |
|---|---|---|
| Authors | /authors/ | GET |
| Single Author | /authors/{AUTHOR_ID}/ | GET, POST |
| Followers | /authors/{AUTHOR_ID}/followers | GET |
| Follower | /authors/{AUTHOR_ID}/followers/{FOREIGN_AUTHOR_ID} | GET, PUT, DELETE |
| Post | /authors/{AUTHOR_ID}/posts/{POST_ID} | GET, POST, DELETE |
| Single Post | /authors/{AUTHOR_ID}/posts/ | GET, POST |
| Image Posts | /authors/{AUTHOR_ID}/posts/{POST_ID}/image | GET |
| Comments | /authors/{AUTHOR_ID}/posts/{POST_ID}/comments | GET, POST |
| Like (Posts) | /authors/{AUTHOR_ID}/posts/{POST_ID}/likes | GET |
| Like (Comments) | /authors/{AUTHOR_ID}/posts/{POST_ID}/comments/{COMMENT_ID}/likes | GET |
| Liked | /authors/{AUTHOR_ID}/liked/ | GET |
| Inbox | /authors/{AUTHOR_ID}/inbox/ | GET, POST, DELETE |