-
Notifications
You must be signed in to change notification settings - Fork 0
Profile related endpoints
Requires Authorization Bearer header with a valid JWT token corresponding to the userid.
POST /api/v1/users/{userid}/profiles
Expected Parameters:
- Password
GET /api/v1/profiles/{userid}
GET /api/v1/profiles/{tagname}
GET /api/v1/profiles/{userid}/followers
GET /api/v1/profiles/{tagname}/followers
GET /api/v1/profiles/{userid}/follows
GET /api/v1/profiles/{tagname}/follows
PUT /api/v1/profiles/{userid}/tagname
Requires Authorization Bearer header with a valid JWT token corresponding to the userid.
PUT /api/v1/profiles/{userid}/displayname
Requires Authorization Bearer header with a valid JWT token corresponding to the userid.
PUT /api/v1/profiles/{userid}/picturepath
Requires Authorization Bearer header with a valid JWT token corresponding to the userid.
PUT /api/v1/profiles/{userid}/backgroundpath
Requires Authorization Bearer header with a valid JWT token corresponding to the userid.
DELETE /api/v1/profiles{userid}
Requires Authorization Bearer header with a valid JWT token corresponding to the userid.
POST /api/v1/profiles/{userid}/follows/{followedid}
Requires Authorization Bearer header with a valid JWT token corresponding to the userid.
DELETE /api/v1/profiles/{userid}/follows/{followedid}