PATCH
/
auth
/
v1
/
profile
/
{username}
curl --request PATCH \
  --url https://api.aceaicompany.com/auth/v1/profile/{username} \
  --header 'Content-Type: application/json' \
  --data '{
  "expertise": [
    "<string>"
  ],
  "bio": "<string>",
  "education": [
    {
      "institution": "<string>",
      "start": "<string>",
      "end": "<string>",
      "degree": "<string>"
    }
  ],
  "experiences": [
    {
      "organization": "<string>",
      "start": "<string>",
      "end": "<string>",
      "title": "<string>",
      "description": "<string>"
    }
  ]
}'
{
  "response": "Authenticated!"
}

Purpose: Updates a user’s profile with the fields: expertise (an array of strings), bio, education (an array of education objects), and experiences (an array of experience objects).

Path Parameters

username
string
required

The username of the profile to update.

Body

application/json
Profile fields to update.

Request body for updating a user profile.

expertise
string[]

List of expertise areas.

bio
string

User biography.

education
object[]

List of education records.

experiences
object[]

List of experience records.

Response

200
application/json
User profile updated successfully.
response
string
required

A confirmation message for successful profile update.

Example:

"Authenticated!"