-
Notifications
You must be signed in to change notification settings - Fork 0
API Documentation
Artem Bondarchuk edited this page Nov 24, 2023
·
4 revisions
Authorization
Bearer <JWT AccessToken>
Parameters
- Path
id: integer | "me"
Responses
- 200 (OK)
{
"id": 0
"picture": "string"
"name": "string"
}
- 500 (Internal Server Error)
{
"err": "string"
}
Authorization
Bearer <JWT AccessToken>
Request Body
{
"picture": "string"
"name": "string"
}
Responses
- 200 (OK)
{
"id": 0
"picture": "string"
"name": "string"
}
- 400 (Bad Request)
{
"err": "string"
}
Authorization
Bearer <JWT AccessToken>
Responses
- 200 (OK)
{
"message": "Successfully deleted"
}