-
Notifications
You must be signed in to change notification settings - Fork 1
User
Finn Lippok edited this page Mar 27, 2023
·
3 revisions
Authorization Bearer {JWT-Token}
Endpoint: GET /api/v1/user/ {id}
{
"id": "UUID",
"user_name": "String",
"bio": "String"
}Endpoint: GET /api/v1/user/search/ {query}/{page}
{
{
"id": "UUID",
"user_name": "String",
"bio": "String"
},
{
"id": "UUID",
"user_name": "String",
"bio": "String"
}
}Endpoint: PUT /api/v1/user/update/ {Bio}
{
"id": "UUID",
"user_name": "String",
"bio": "String"
}