mirror of
https://github.com/KeyZox71/knl_meowscendence.git
synced 2025-12-31 21:56:41 +01:00
42 lines
552 B
Markdown
42 lines
552 B
Markdown
# ping
|
|
|
|
Available endpoints:
|
|
- POST `/ping`
|
|
- GET `/ping/:userId`
|
|
|
|
Common return:
|
|
- 500 with response
|
|
```json
|
|
{
|
|
"error": "Internal server error"
|
|
}
|
|
```
|
|
|
|
## POST `/ping`
|
|
|
|
Used to send a ping and update the lastSeenTime (can be used for activity time)
|
|
|
|
Input needed : just need a valid token
|
|
|
|
Can return:
|
|
- 200
|
|
```json
|
|
{
|
|
"msg": "last seen time updated successfully"
|
|
}
|
|
```
|
|
|
|
## GET `/ping/:userId`
|
|
|
|
Used to retrive the lastSeenTime of a user
|
|
|
|
Input needed : just need a valid token
|
|
|
|
Can return:
|
|
- 200
|
|
```json
|
|
{
|
|
"isLogged": "<true/false>"
|
|
}
|
|
```
|