1. me
SkillForge
  • SkillForge
  • Auth
    • Register
      POST
    • Login
      POST
  • me
    • Courses
      • Enroll course
      • Get course progress
    • Units
      • Start unit
      • Complete unit
    • Get me
      GET
    • Update me
      PATCH
    • Get xp
      GET
    • Get badges
      GET
    • Get recommendations
      GET
  • Onboarding Quiz
    • Get questions
      GET
    • Save answers
      POST
  • Courses
    • Get courses
      GET
    • Get enrolled courses
      GET
    • Get course
      GET
    • Get course units
      GET
  • Units
    • Get unit
      GET
  • Schemas
    • Schemas
      • Pet
      • ApiResponse
      • Category
      • Tag
      • Order
      • User
    • UserArray
      • UserArray
  1. me

Update me

PATCH
/me

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Body

🟠400Invalid field
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'http://localhost:6567/api/v1/me' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "displayName": "string",
    "bio": "string"
}'
Response Response Example
200 - Success
{
    "id": "c31bd57f-17c0-407e-8dbe-136f92c4e1a9",
    "email": "test@takiyo.us",
    "displayName": "Takiyo Takahashi",
    "avatarS3Key": null,
    "bio": null
}
Modified at 2026-04-06 16:39:16
Previous
Get me
Next
Get xp
Built with