-
Notifications
You must be signed in to change notification settings - Fork 0
API Documentation
Anugrah edited this page Apr 7, 2022
·
10 revisions
this section for explain API Go Postgres
- User
- Register User
- Login User
- Update User
- Delete User
- Photo
- Upload Photo
- Get Photo
- Update Photo
- Delete Photo
- Comment
- Insert Comment
- Get Comment
- Update Comment
- Delete Comment
- Social Media
- Insert Social Media
- Get Social Media
- Update Social Media
- Delete Social Media
This endpoint for register user, first hit API
Command | Method | Routes | Description |
---|---|---|---|
User Register | POST | /api/users/register |
this endpoint for user register |
this endpoint no auth
{
"email": "string",
"username": "string",
"age": "integer",
"password": "string"
}
{
"email": "[email protected]",
"username": "user",
"age": 8,
"password": "password"
}