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.

Response

200
application/json

User profile updated successfully.

The response is of type object.