request url: https://social-chat.onrender.com/user
verb
: POST
curl :
curl --location --globoff '{{host}}/user' \\
--header 'Content-Type: application/json' \\
--data-raw '{
"firstName":"Pranav",
"lastName":"Doe",
"phone":"123456",
"[email" : "[email protected]](mailto:email%22:%[email protected])",
"password":"ykdfsh@raj"
}'
Request Body
{
"firstName":"Jhon",
"lastName":"Root",
"phone":"123456",
"email":"[email protected]",
"password":"jhon"
}
Response Body
{
"statusCode": 201,
"message": "Account created successfully",
"data": {
"id": "865bd80b-5d39-4538-a687-1f5c91af980f",
"firstName": "Jhon",
"lastName": "Root",
"phone": "123456",
"email": "[email protected]",
"password": "jhon",
"avatarUrl": "<https://icon-library.com/images/anonymous-avatar-icon/anonymous-avatar-icon-25.jpg>",
"createdAt": "2023-05-17T03:49:23.558685263"
}
}
Request Url: https://social-chat.onrender.com/user/login
verb
: POST
curl --location '[<https://social-chat.onrender.com/user/login>](<https://social-chat.onrender.com/user/login>)' \\
--header 'Content-Type: application/json' \\
--data-raw '{
"email":"[email protected]",
"password":"ykdfsh@raj"
}'
Response Body
{
"statusCode": 200,
"message": "Account login successfully",
"data": {
"id": "8b5fc201-8866-416b-8542-e234defd7153",
"firstName": "yash",
"lastName": "Raj",
"phone": "7479464719",
"email": "[email protected]",
"password": "ykdfsh@raj",
"avatarUrl": "<https://icon-library.com/images/anonymous-avatar-icon/anonymous-avatar-icon-25.jpg>",
"createdAt": "2023-05-14T17:34:33.959535"
}
}
Request Url: https://social-chat.onrender.com/user
verb
: GET
curl --location '<https://social-chat.onrender.com/user>'
Response Body
{
"statusCode": 200,
"message": "users fetched successfully",
"data": [
{
"id": "8b5fc201-8866-416b-8542-e234defd7153",
"firstName": "yash",
"lastName": "Raj",
"phone": "7479464719",
"email": "[email protected]",
"password": "ykdfsh@raj",
"avatarUrl": "<https://icon-library.com/images/anonymous-avatar-icon/anonymous-avatar-icon-25.jpg>",
"createdAt": "2023-05-14T17:34:33.959535"
},
{
"id": "865bd80b-5d39-4538-a687-1f5c91af980f",
"firstName": "Jhon",
"lastName": "Root",
"phone": "123456",
"email": "[email protected]",
"password": "jhon",
"avatarUrl": "<https://icon-library.com/images/anonymous-avatar-icon/anonymous-avatar-icon-25.jpg>",
"createdAt": "2023-05-17T03:49:23.558685"
}
]
}